-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
48 lines (45 loc) · 1.51 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
48 lines (45 loc) · 1.51 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
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="tests/bootstrap.php"
colors="true"
cacheResult="true"
cacheResultFile=".phpunit.result.cache"
executionOrder="default"
failOnWarning="false"
failOnRisky="false"
beStrictAboutTestsThatDoNotTestAnything="false"
>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="display_errors" value="1"/>
<server name="APP_ENV" value="test"/>
</php>
<testsuites>
<testsuite name="All Tests">
<directory suffix="Test.php">./tests</directory>
</testsuite>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Integration">
<directory suffix="Test.php">./tests/Integration</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">./application</directory>
</include>
<exclude>
<directory>./application/vendor</directory>
<directory>./application/test</directory>
<directory>./application/templates_c</directory>
<directory>./application/views</directory>
</exclude>
</coverage>
<logging>
<junit outputFile="build/logs/junit.xml"/>
<testdoxHtml outputFile="build/testdox.html"/>
</logging>
</phpunit>