Updated phpunit.xml

This commit is contained in:
James Cole 2014-07-02 22:12:22 +02:00
parent 3c3e8d4fb2
commit fdd5f4c014

View File

@ -10,6 +10,27 @@
stopOnFailure="false" stopOnFailure="false"
syntaxCheck="false" syntaxCheck="false"
> >
<filter>
<whitelist>
<directory suffix=".php">./app/models</directory>
<directory suffix=".php">./app/controllers</directory>
<directory suffix=".php">./app/events</directory>
<directory suffix=".php">./app/extensions</directory>
<directory suffix=".php">./app/queue</directory>
<directory suffix=".php">./app/helpers</directory>
<exclude>
<file>./app/controllers/BaseController.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<testsuites> <testsuites>
<testsuite name="Application Test Suite"> <testsuite name="Application Test Suite">
<directory>./app/tests/</directory> <directory>./app/tests/</directory>