-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
21 lines (18 loc) · 690 Bytes
/
phpunit.xml.dist
File metadata and controls
21 lines (18 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="pH7Framework Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="coverage" showUncoveredFiles="true" />
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true" showOnlySummary="true" />
<log type="coverage-clover" target="coverage/clover.xml" showUncoveredFiles="true" />
</logging>
</phpunit>