-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
48 lines (47 loc) · 2.19 KB
/
phpunit.xml.dist
File metadata and controls
48 lines (47 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="tests/_support/_bootstrap.php"
cacheResultFile=".phpunit.cache/test-results"
executionOrder="depends,defects"
forceCoversAnnotation="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
verbose="true">
<testsuites>
<testsuite name="Core">
<directory>./tests/App/Libraries/CafeVariome/Core</directory>
</testsuite>
<testsuite name="Security">
<directory>./tests/App/Libraries/CafeVariome/Security</directory>
</testsuite>
<testsuite name="Helpers">
<directory>./tests/App/Libraries/CafeVariome/Helpers</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory=".phpunit.cache/code-coverage"
processUncoveredFiles="true">
<include>
<directory suffix=".php">./app/Libraries/CafeVariome/Core</directory>
<directory suffix=".php">./app/Libraries/CafeVariome/Security</directory>
<directory suffix=".php">./app/Libraries/CafeVariome/Helpers</directory>
<directory suffix=".php">./app/Libraries/CafeVariome/Database</directory>
<directory suffix=".php">./app/Libraries/CafeVariome/Factory</directory>
<directory suffix=".php">./app/Libraries/CafeVariome/Query</directory>
<directory suffix=".php">./app/Libraries/CafeVariome/Beacon</directory>
<directory suffix=".php">./app/Libraries/CafeVariome/Entities</directory>
</include>
</coverage>
<php>
<server name="app.baseURL" value="http://example.com/"/>
<!-- Directory containing phpunit.xml -->
<const name="FCPATH" value="./"/>
<const name="ROOTPATH" value="./"/>
<const name="ENVIRONMENT" value="testing"/>
<const name="CI_ENVIRONMENT" value="testing"/>
</php>
</phpunit>