forked from DragonBe/vies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
31 lines (27 loc) · 1 KB
/
phpunit.xml
File metadata and controls
31 lines (27 loc) · 1 KB
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
29
30
31
<phpunit
colors="true"
stopOnError="true"
stopOnFailure="true"
bootstrap="./vendor/autoload.php">
<testsuite name="Unit test suite">
<directory>./tests</directory>
</testsuite>
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
<!-- no need to test the autoloading -->
<exclude>
<file>./src/autoload.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./build/coverage" charset="UTF-8"
highlight="false" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="./build/logs/clover.xml"/>
<log type="junit" target="./build/logs/junit.xml" logIncompleteSkipped="false"/>
<log type="tap" target="./build/logs/vies.tap"/>
<log type="testdox-html" target="./build/logs/testdox.html"/>
<log type="testdox-text" target="./build/logs/testdox.txt"/>
</logging>
</phpunit>