-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
19 lines (19 loc) · 808 Bytes
/
phpunit.xml.dist
File metadata and controls
19 lines (19 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<phpunit bootstrap="tests/bootstrap.php" colors="true" verbose="true">
<testsuites>
<testsuite name="MailModule Test Suite">
<directory>tests/MailModuleTest</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
<log type="coverage-clover" target="./build/logs/clover.xml"/>
<log type="coverage-html" target="./build/report" charset="UTF-8" highlight="true" lowUpperBound="35"
highLowerBound="70"/>
<log type="testdox-text" target="./build/testdox/testdox.txt"/>
</logging>
</phpunit>