-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
28 lines (28 loc) · 1008 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
24
25
26
27
28
<phpunit
bootstrap="./tests/php/bootstrap.php.dist"
colors="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
backupGlobals="true"
backupStaticAttributes="true"
processIsolation="true"
stopOnError="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Test">
<directory suffix="Test.php">./tests/Unit/</directory>
<directory suffix="Test.php">./tests/Functional/</directory>
<directory suffix="Test.php">./tests/Integration/</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>