-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
49 lines (49 loc) · 1.69 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<phpunit
colors="true"
bootstrap="./tests/bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
>
<testsuites>
<testsuite name="Assertions tests">
<directory>./tests/suites/Assertions/</directory>
</testsuite>
<testsuite name="Collections tests">
<directory>./tests/suites/Collections/</directory>
</testsuite>
<testsuite name="Data tests">
<directory>./tests/suites/Data/</directory>
</testsuite>
<!--<testsuite name="Territory tests">
<directory>./tests/suites/territory/</directory>
</testsuite>
<testsuite name="Number tests">
<directory>./tests/suites/number/</directory>
</testsuite>
<testsuite name="Currency tests">
<directory>./tests/suites/currency/</directory>
</testsuite>-->
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./src/collections/</directory>
<directory suffix=".php">./src/assertions/</directory>
<directory suffix=".php">./src/data/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html"
target="./tests/output/coverage/html"
lowUpperBound="35"
highLowerBound="70"/>
<log type="coverage-text"
target="php://stdout"
showUncoveredFiles="true"/>
</logging>
</phpunit>