-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
28 lines (23 loc) · 901 Bytes
/
phpunit.xml
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
<phpunit bootstrap="tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="TestProject">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">lib/</directory>
<exclude>
<!-- <file>../application/Bootstrap.php</file> -->
<!-- <file>../application/controllers/ErrorController.php</file> -->
<!-- <directory suffix=".phtml">../application/</directory> -->
</exclude>
</whitelist>
</filter>
<!-- <logging> -->
<!-- <log type="coverage-clover" target="../coverage/coverage.xml"/> -->
<!-- <log type="coverage-html" target="../coverage" charset="UTF-8" -->
<!-- yui="true" highlight="true" lowUpperBound="50" highLowerBound="80"/> -->
<!-- <log type="testdox-html" target="../log/testdox.html" /> -->
<!-- </logging> -->
</phpunit>