-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
26 lines (24 loc) · 1.02 KB
/
phpunit.xml
File metadata and controls
26 lines (24 loc) · 1.02 KB
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
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="Library Test Suite">
<directory>./tests/library/Application</directory>
</testsuite>
<testsuite name="Application Test Suite">
<directory>./tests/application</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./library/Application</directory>
<directory suffix=".php">./application/controllers</directory>
<exclude>
<directory suffix=".php">./library/Application/Entity/Proxy</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./tests/log/report" charset="UTF-8" yui="true" highlight="true" lowUpperBound="50" highLowerBound="80" />
<log type="junit" target="./tests/log/testresults.xml" logIncompleteSkipped="false"/>
<log type="testdox" target="./test/log/testdox.html" />
</logging>
</phpunit>