-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpunit.xml.dist
40 lines (33 loc) · 1016 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
40
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.2/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true">
<testsuites>
<testsuite name="Unit">
<directory>src-dev/Tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>src/</directory>
</whitelist>
</filter>
<logging>
<log
type="coverage-text"
target="php://stdout"/>
<log
type="coverage-html"
target="reports/human/coverage/html"/>
<log
type="coverage-clover"
target="reports/machine/coverage/coverage.xml"/>
<log
type="testdox-html"
target="reports/human/unit/junit.html"/>
<log
type="junit"
target="reports/machine/unit/junit.xml"/>
</logging>
</phpunit>