-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
34 lines (32 loc) · 1.14 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
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* @since 0.1.0 2015-04-29
* @internal {@see https://github.com/pwnraid/bnet/blob/master/phpunit.xml.dist pwnraid fork reference}
*/
-->
<phpunit
bootstrap="tests/bootstrap.php"
beStrictAboutTestsThatDoNotTestAnything="true"
checkForUnintentionallyCoveredCode="false"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
colors="true">
<testsuites>
<testsuite name="phptimeago">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="tap" target="logs/report.tap"/>
<log type="junit" target="logs/report.junit.xml"/>
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
<log type="coverage-text" target="logs/coverage.txt"/>
<log type="coverage-clover" target="logs/clover.xml"/>
</logging>
</phpunit>