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
|
<phpunit
bootstrap="./Bootstrap.php"
backupGlobals="true"
colors="true">
<testsuites>
<testsuite name="CodeIgniter Application Test Suite">
<directory suffix="test.php">./</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">../application/controllers</directory>
<directory suffix=".php">../application/models</directory>
<directory suffix=".php">../application/views</directory>
<directory suffix=".php">../application/libraries</directory>
<directory suffix=".php">../application/helpers</directory>
<directory suffix=".php">../application/hooks</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="build/coverage"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="junit" target="build/logs/junit.xml"/>
</logging>
</phpunit>
|