-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
27 lines (27 loc) · 906 Bytes
/
phpunit.xml
File metadata and controls
27 lines (27 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
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="./vendor/autoload.php">
<logging>
<log type="testdox-html" target="./build/testdox.html"></log>
<log type="coverage-html" target="./build/coverage"></log>
</logging>
<filter>
<blacklist>
<directory>vendor</directory>
</blacklist>
</filter>
<testsuites>
<testsuite name="all">
<directory suffix="Test.php">tests/</directory>
<exclude>/vendor</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
<exclude>
<directory>tests/</directory>
<directory>build/</directory>
</exclude>
</whitelist>
</filter>
</phpunit>