-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
55 lines (52 loc) · 1.52 KB
/
phpunit.xml
File metadata and controls
55 lines (52 loc) · 1.52 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" standalone="yes" ?>
<phpunit
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="src/php/bootstrap.php"
cacheTokens="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
processIsolation="true"
stopOnError="true"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="true"
>
<php>
<env name="EIX_ENV" value="test"/>
</php>
<testsuites>
<testsuite name="full">
<directory suffix="Test.php">src/php/test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/php/main</directory>
</whitelist>
</filter>
<logging>
<log
type="coverage-text"
target="php://stdout"
charset="UTF-8"
highlight="true"
lowUpperBound="75"
highLowerBound="95"
showUncoveredFiles="false"
/>
<log
type="coverage-html"
target="build/reports/phpunit"
charset="UTF-8"
highlight="true"
lowUpperBound="75"
highLowerBound="95"
/>
</logging>
</phpunit>