-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.xml.dist
28 lines (28 loc) · 1.13 KB
/
phpunit.xml.dist
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
<?xml version="1.0"?>
<phpunit bootstrap="src/tests/unit-tests/bootstrap.php">
<testsuites>
<testsuite name="Unit Tests">
<directory suffix="Test.php">src/tests/unit-tests</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory suffix=".php">vendor</directory>
<directory suffix=".php">src/tests</directory>
</blacklist>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/bin</directory>
<directory suffix=".php">src/php</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="build/code-coverage"/>
<log type="coverage-clover" target="build/logs/phpunit.xml"/>
<log type="json" target="build/logs/phpunit.json"/>
<log type="tap" target="build/logs/phpunit.tap"/>
<log type="junit" target="build/logs/phpunit-junit.xml"/>
<log type="testdox-html" target="build/testdox.html"/>
<log type="testdox-text" target="build/testdox.txt"/>
</logging>
</phpunit>
<!-- vim: set tabstop=4 shiftwidth=4 expandtab: -->