-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
39 lines (37 loc) · 989 Bytes
/
phpunit.xml.dist
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
<phpunit
bootstrap="./test/bootstrap.php"
colors="true"
printerFile="vendor/whatthejeff/nyancat-phpunit-resultprinter/src/NyanCat/PHPUnit/ResultPrinter.php"
printerClass="NyanCat\PHPUnit\ResultPrinter"
>
<testsuites>
<testsuite name="Main Test Suite">
<directory>./test/src</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory suffix=".php">~/.composer</directory>
<directory suffix=".php">~/.composer/vendor</directory>
<directory suffix=".php">./test</directory>
<directory suffix=".php">./vendor</directory>
</blacklist>
<whitelist>
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix=".php">~/.composer</directory>
<directory suffix=".php">../vendor</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html"
target="./report/phpunit"
charset="UTF-8"
yui="true"
highlight="true"
lowUpperBound="35"
highLowerBound="70"
/>
</logging>
</phpunit>