Files
search/phpunit.xml.dist
2013-02-03 17:37:20 +01:00

26 lines
692 B
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./tests/bootstrap.php"
>
<testsuites>
<testsuite name="Doctrine Search Test Suite">
<directory>./tests/Doctrine/Tests/Search</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./lib/Doctrine/Search</directory>
</whitelist>
</filter>
</phpunit>