<phpunit
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="UnitTestsBootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="false"
>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">../src</directory>
<exclude>
<directory suffix=".php">../src/Tests</directory>
</exclude>
</whitelist>
</filter>
<testsuites>
<testsuite name="Core tests">
<directory>../src/Tests/Unit/</directory>
</testsuite>
</testsuites>
</phpunit>
|