-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
28 lines (28 loc) · 1.16 KB
/
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
24
25
26
27
28
<phpunit
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
syntaxCheck = "true"
beStrictAboutTestsThatDoNotTestAnything = "true"
beStrictAboutOutputDuringTests = "true"
beStrictAboutChangesToGlobalState = "true"
>
<testsuites>
<testsuite name="Test">
<directory suffix="Test.php">test/phpunit/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<logging>
<log type="testdox-html" target="build/logs/testdox.html"/>
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
<log type="coverage-html" target="build/logs/coverage" charset="UTF-8" yui="true" highlight="true"/>
<log type="coverage-text" target="build/logs/coverage.txt"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>