winter/phpunit.xml

26 lines
868 B
XML
Raw Normal View History

2014-05-14 23:21:55 +10:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
2014-05-14 23:21:55 +10:00
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="October CMS Test Suite">
<directory>./tests/unit</directory>
2014-05-14 23:21:55 +10:00
</testsuite>
<testsuite name="October Rain Test Suite">
<directory>./vendor/october/rain/tests</directory>
</testsuite>
</testsuites>
2015-02-20 22:12:11 +11:00
<php>
<env name="APP_ENV" value="testing" />
<env name="CACHE_DRIVER" value="array" />
<env name="SESSION_DRIVER" value="array" />
</php>
2014-05-14 23:21:55 +10:00
</phpunit>