-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (24 loc) · 966 Bytes
/
Copy pathphpunit.xml
File metadata and controls
24 lines (24 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" colors="true" verbose="true">
<testsuites>
<testsuite name="Ataama Lets Encrypt Test Suite">
<directory>./tests/</directory>
<exclude>./vendor</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./libs/</directory>
<exclude>
<file>./libs/DNS_Utility.php</file>
<directory suffix=".php">./vendor</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="junit" target="build/report.junit.xml"/>
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
<log type="coverage-text" target="php://stdout" />
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>