-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
26 lines (24 loc) · 879 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
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<testsuite name="Test Suite">
<directory>./tests/mQueueTest</directory>
</testsuite>
<!-- <testsuite name="Models Test Suite">
<directory>./application/models</directory>
</testsuite>
<testsuite name="Library Test Suite">
<directory>./library</directory>
</testsuite>-->
<filter>
<whitelist>
<directory suffix=".php">./application/</directory>
<exclude>
<directory suffix=".phtml">./application/</directory>
<!--<file>./application/Bootstrap.php</file>-->
<!--<file>./application/controllers/ErrorController.php</file>-->
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./tests/log/report"/>
</logging>
</phpunit>