-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (24 loc) · 906 Bytes
/
phpunit.xml
File metadata and controls
24 lines (24 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Test Suite">
<directory suffix=".php">tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
<exclude>
<directory suffix=".php">./vendor/</directory>
</exclude>
</whitelist>
<blacklist>
<directory suffix=".php">*Test</directory>
</blacklist>
</filter>
<logging>
<log type="testdox-text" target="tests/_reports/testdox.txt"/>
<log type="testdox-html" target="tests/_reports/testdox.html"/>
<log type="coverage-html" target="tests/_reports/coverage" charset="UTF-8" yui="true" highlight="true" lowUpperBound="45" highLowerBound="85" />
</logging>
</phpunit>