respect-validation/phpunit.xml.dist

25 lines
734 B
Plaintext
Raw Normal View History

<phpunit backupGlobals="false"
backupStaticAttributes="false"
2011-11-25 21:03:48 +01:00
cacheTokens="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
2011-11-25 21:03:48 +01:00
verbose="false">
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">tests</directory>
</testsuite>
<testsuite name="integration">
<directory suffix=".phpt">tests</directory>
</testsuite>
</testsuites>
<filter>
2011-11-25 21:03:48 +01:00
<whitelist>
<directory>library/</directory>
2011-11-25 21:03:48 +01:00
</whitelist>
</filter>
</phpunit>