|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit bootstrap="tests/_support/_bootstrap.php"
|
|
|
|
backupGlobals="false"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
stopOnError="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
stopOnIncomplete="false"
|
|
|
|
stopOnSkipped="false">
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="aauth">
|
|
|
|
<directory>./tests/Aauth</directory>
|
|
|
|
<exclude>./tests/system</exclude>
|
|
|
|
</testsuite>
|
|
|
|
<testsuite name="database">
|
|
|
|
<directory>./tests/Aauth/Database</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
<filter>
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
|
|
<directory suffix=".php">./application/Libraries</directory>
|
|
|
|
<directory suffix=".php">./application/Models</directory>
|
|
|
|
<file>./application/Config/Aauth.php</file>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
|
|
|
|
<logging>
|
|
|
|
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
|
|
|
<log type="coverage-html" target="build/coverage"/>
|
|
|
|
</logging>
|
|
|
|
|
|
|
|
<php>
|
|
|
|
<env name="app.baseURL" value="http://example.com"/>
|
|
|
|
</php>
|
|
|
|
</phpunit>
|