winter/phpunit.xml
2014-05-14 23:21:55 +10:00

24 lines
831 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="October CMS Test Suite">
<directory>./tests</directory>
</testsuite>
<testsuite name="October Rain Test Suite">
<directory>./vendor/october/rain/tests</directory>
</testsuite>
<testsuite name="Laravel Test Suite">
<directory>./vendor/laravel/framework/tests</directory>
</testsuite>
</testsuites>
</phpunit>