-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
26 lines (26 loc) · 849 Bytes
/
phpunit.xml.dist
File metadata and controls
26 lines (26 loc) · 849 Bytes
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
<phpunit
bootstrap="./tests/src/php/bootstrap.php.dist"
colors="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
backupGlobals="true"
backupStaticAttributes="true"
processIsolation="true"
stopOnError="true"
stopOnFailure="true">
<testsuites>
<testsuite>
<directory suffix="Test.php">./tests/src/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src/</directory>
<file>./</file>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="coverage/report/clover.xml"/>
<log type="coverage-html" target="coverage/report/html" lowUpperBound="35" highLowerBound="70"/>
</logging>
</phpunit>