blessing-skin-server/phpunit.xml
2019-02-28 19:14:11 +08:00

29 lines
897 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true"
backupGlobals="false"
stopOnFailure="false"
processIsolation="false"
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>
<exclude>
<directory suffix=".php">./app/Services/Cipher</directory>
<directory suffix=".php">./app/Console</directory>
</exclude>
</whitelist>
</filter>
<php>
<env name="APP_ENV" value="testing"/>
</php>
</phpunit>