-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
20 lines (20 loc) · 771 Bytes
/
phpunit.xml
File metadata and controls
20 lines (20 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" colors="true" verbose="false">
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
<exclude>
<directory suffix=".php">vendor/</directory>
</exclude>
</whitelist>
</filter>
<testsuites>
<testsuite name="Test Suite">
<directory suffix="Test.php">tests/</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="reports/phpunit" lowUpperBound="60" highLowerBound="85"/>
<log type="coverage-text" target="php://stdout" lowUpperBound="60" highLowerBound="85"/>
</logging>
</phpunit>