mirror of
https://github.com/doctrine/DoctrineCacheBundle.git
synced 2026-03-24 08:52:11 +01:00
36 lines
970 B
XML
36 lines
970 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit bootstrap="Tests/bootstrap.php"
|
|
convertWarningsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertErrorsToExceptions="true"
|
|
backupStaticAttributes="false"
|
|
processIsolation="false"
|
|
backupGlobals="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
colors="true">
|
|
|
|
<testsuites>
|
|
<testsuite name="Symfony Bundle for Doctrine Cache">
|
|
<directory>./Tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<groups>
|
|
<exclude>
|
|
<group>benchmark</group>
|
|
</exclude>
|
|
</groups>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>.</directory>
|
|
<exclude>
|
|
<directory>./Resources</directory>
|
|
<directory>./vendor</directory>
|
|
<directory>./Tests</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|