php-resque/phpunit.xml.dist

24 lines
565 B
Plaintext
Raw Permalink Normal View History

2010-04-18 13:58:43 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
bootstrap="test/bootstrap.php"
2010-04-18 13:58:43 +00:00
backupStaticAttributes="false"
colors="true"
2010-04-18 13:58:43 +00:00
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="Resque Test Suite">
<directory>./test/Resque/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./lib/Resque/</directory>
</whitelist>
</filter>
</phpunit>