25 lines
882 B
XML
25 lines
882 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="../vendor/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false">
|
|
<testsuites>
|
|
<testsuite name="Core Suite">
|
|
<directory>./core/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">../application/core</directory>
|
|
<directory suffix=".php">../application/model</directory>
|
|
<directory suffix=".php">../application/controller</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|