-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
42 lines (37 loc) · 1.35 KB
/
phpunit.xml.dist
File metadata and controls
42 lines (37 loc) · 1.35 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="true"
forceCoversAnnotation="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
verbose="true"
>
<php>
<ini name="memory_limit" value="-1"/>
</php>
<testsuites>
<testsuite name="All Tests">
<directory suffix=".php">tests</directory>
</testsuite>
<testsuite name="Unit Tests">
<directory suffix=".php">tests/unit</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory>vendor</directory>
<!--<directory>tests</directory>-->
</blacklist>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="junit" target="build/reports/phpunit-log-junit.xml" />
<log type="tap" target="build/reports/phpunit-log-tap.tap" />
<log type="coverage-clover" target="build/reports/phpunit-coverage-clover.xml" />
<log type="coverage-html" target="build/reports/phpunit-coverage-html" title="Improv.ArgParse" />
<log type="coverage-text" target="build/reports/phpunit-coverage-text.txt" title="Improv.ArgParse" />
</logging>
</phpunit>