Initial unit test configuration

This commit is contained in:
drigato 2013-12-18 15:48:32 -05:00
parent 9e5cfe0d39
commit 0f107dbad3
40 changed files with 4301 additions and 303 deletions

View file

@ -1,2 +1,21 @@
<!-- b bs -->
<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>
<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>