respect-validation/phpunit.xml.dist

20 lines
652 B
Plaintext
Raw Normal View History

2015-08-11 18:32:15 +02:00
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
2011-11-25 21:03:48 +01:00
cacheTokens="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
verbose="true">
<testsuites>
<testsuite name="unit">
2015-08-11 18:32:15 +02:00
<directory suffix="Test.php">tests/unit/</directory>
</testsuite>
<testsuite name="integration">
2015-08-11 18:32:15 +02:00
<directory suffix=".phpt">tests/integration/</directory>
</testsuite>
</testsuites>
</phpunit>