You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
907 B
36 lines
907 B
12 months ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<phpunit bootstrap="../Doctrine/Tests/TestInit.php"
|
||
|
convertWarningsToExceptions="true"
|
||
|
convertNoticesToExceptions="true"
|
||
|
convertErrorsToExceptions="true"
|
||
|
backupStaticAttributes="false"
|
||
|
processIsolation="false"
|
||
|
stopOnFailure="false"
|
||
|
backupGlobals="false"
|
||
|
syntaxCheck="false"
|
||
|
colors="true">
|
||
|
|
||
|
<logging>
|
||
|
<log type="coverage-clover" target="../../build/logs/clover.xml"/>
|
||
|
</logging>
|
||
|
|
||
|
<testsuites>
|
||
|
<testsuite name="Doctrine Cache Test Suite">
|
||
|
<directory>../Doctrine/</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
|
||
|
<filter>
|
||
|
<whitelist>
|
||
|
<directory>../../lib/Doctrine/</directory>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
|
||
|
<groups>
|
||
|
<exclude>
|
||
|
<group>performance</group>
|
||
|
</exclude>
|
||
|
</groups>
|
||
|
</phpunit>
|