-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
27 lines (27 loc) · 778 Bytes
/
phpunit.xml
File metadata and controls
27 lines (27 loc) · 778 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
25
26
27
<phpunit bootstrap="test/bootstrap.php">
<testsuites>
<testsuite name="identity">
<directory>test/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<directory>src/View</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html"
target="./test/log/codeCoverage"
lowUpperBound="50"
highLowerBound="80"
showUncoveredFiles="false"
/>
<log
type="coverage-clover"
target="./test/log/coverage.xml"
/>
</logging>
</phpunit>