respect-validation/phpunit.xml.dist
2015-07-29 00:28:11 -03:00

25 lines
734 B
XML

<phpunit backupGlobals="false"
backupStaticAttributes="false"
cacheTokens="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
verbose="false">
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">tests</directory>
</testsuite>
<testsuite name="integration">
<directory suffix=".phpt">tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>library/</directory>
</whitelist>
</filter>
</phpunit>