laravel/phpunit.xml

21 lines
629 B
XML
Raw Normal View History

2013-01-11 15:14:07 -06:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
2013-01-11 15:14:07 -06:00
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false">
2013-01-11 15:14:07 -06:00
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
2013-01-11 15:14:07 -06:00
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="testing"/>
</php>
2014-03-15 10:14:55 +00:00
</phpunit>