libretime/airtime_mvc/tests/phpunit.xml

24 lines
900 B
XML

<phpunit bootstrap="./application/bootstrap.php" colors="true">
<testsuite name="My Application Tests">
<directory>./</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>
<!-- Disabling broken code coverage report. It's not using our autoloader for some reason...
<logging>
<log type="coverage-html" target="./log/report" charset="UTF-8" yui="true" hightlight="true" lowupperbound="50" highlowerbound="80">
<log type="testdox" target="./log/testdox.html">
</log></log></logging>
-->
</phpunit>