-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
30 lines (29 loc) · 1.22 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
29
30
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.8/phpunit.xsd"
bootstrap="vendor/autoload.php"
stopOnError="true"
stopOnFailure="true"
processIsolation="false"
colors="true"
verbose="true">
<testsuites>
<testsuite name="Functional">
<directory suffix="Test.php">tests/Functional</directory>
</testsuite>
<testsuite name="Unit">
<directory suffix="Test.php">tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="tests/clover.xml" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-html" target="tests/html" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-text" target="php://stdout" lowUpperBound="35" highLowerBound="70" />
<log type="testdox-html" target="tests/testdox.html" lowUpperBound="35" highLowerBound="70"/>
</logging>
</phpunit>