2014-05-14 23:21:55 +10:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
2015-07-25 12:29:57 +10:00
|
|
|
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">
|
2015-01-05 11:30:03 +11:00
|
|
|
<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>
|