winter/phpunit.xml
Samuel Georges 408c06a33f Fixes unit tests for case sensitive file systems
We should be using the class compiler here eventually
2015-07-25 12:29:57 +10:00

29 lines
1003 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
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>
</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>
<php>
<env name="APP_ENV" value="testing" />
<env name="CACHE_DRIVER" value="array" />
<env name="SESSION_DRIVER" value="array" />
</php>
</phpunit>