-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml
23 lines (23 loc) · 842 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="ISO-8859-1"?>
<phpunit bootstrap="bootstrap.php" colors="true" verbose="true" stopOnFailure="true">
<php>
<const name="TESTING" value="true"/>
</php>
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">src/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix="Test.php">src/</directory>
</whitelist>
</filter>
<logging>
<log type="tap" target="tests/build/report.tap"/>
<log type="junit" target="tests/build/report.junit.xml"/>
<log type="coverage-html" target="tests/build/coverage"/>
<log type="coverage-text" target="tests/build/coverage.txt"/>
<log type="coverage-clover" target="tests/build/logs/clover.xml"/>
</logging>
</phpunit>