-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.xml.dist
39 lines (36 loc) · 1.22 KB
/
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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/7.0/phpunit.xsd"
backupGlobals="false"
colors="true"
>
<testsuites>
<testsuite name="default">
<directory>lib/Pretzlaw/PHPUnit/DocGen/Test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>lib/</directory>
<exclude>
<directory>lib/Pretzlaw/PHPUnit/DocGen/Test</directory>
</exclude>
</whitelist>
</filter>
<listeners>
<listener class="Pretzlaw\PHPUnit\DocGen\TestCaseListener">
<arguments>
<string>var/documentation.md</string>
</arguments>
</listener>
<listener class="Pretzlaw\PHPUnit\DocGen\TestCaseListener">
<arguments>
<string>var/documentation.html</string>
<string>pretzlaw/phpunit-docgen - Generate documentation out of tests</string>
<string>documentation.css</string>
</arguments>
</listener>
</listeners>
<logging>
<log type="coverage-html" target="var/phpunit"/>
</logging>
</phpunit>