-
Notifications
You must be signed in to change notification settings - Fork 14
/
phpunit.xml
34 lines (34 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
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="./vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<php>
<env name="var_true" value="true"/>
<env name="var_false" value="false"/>
<env name="var_empty" value="empty"/>
<env name="var_null" value="null"/>
<env name="var_true_parentheses" value="(true)"/>
<env name="var_false_parentheses" value="(false)"/>
<env name="var_empty_parentheses" value="(empty)"/>
<env name="var_null_parentheses" value="(null)"/>
</php>
</phpunit>