blessing-skin-server/phpunit.xml

25 lines
738 B
XML
Raw Normal View History

2017-10-26 23:24:33 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true"
backupGlobals="false"
stopOnFailure="false"
processIsolation="false"
2017-10-26 23:24:33 +08:00
backupStaticAttributes="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
bootstrap="bootstrap/autoload.php">
<testsuites>
<testsuite name="Application Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<php>
<env name="APP_ENV" value="testing"/>
</php>
2017-10-26 23:24:33 +08:00
</phpunit>