2017-06-09 02:28:26 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-07-14 03:29:46 +08:00
|
|
|
<phpunit bootstrap="bootstrap/autoload.php"
|
|
|
|
colors="true"
|
2017-06-09 02:28:26 +08:00
|
|
|
processIsolation="false"
|
2017-07-14 04:23:55 +08:00
|
|
|
stopOnFailure="true"
|
2017-07-14 03:29:46 +08:00
|
|
|
convertErrorsToExceptions="false"
|
|
|
|
convertNoticesToExceptions="false"
|
2017-11-24 00:02:23 +08:00
|
|
|
convertWarningsToExceptions="false"
|
2017-11-24 00:03:01 +08:00
|
|
|
beStrictAboutOutputDuringTests="false"
|
2017-11-24 00:02:23 +08:00
|
|
|
beStrictAboutTestsThatDoNotTestAnything="false">
|
2018-04-08 09:52:12 +08:00
|
|
|
<!--printerClass="Codedungeon\PHPUnitPrettyResultPrinter\Printer"-->
|
2017-06-09 02:28:26 +08:00
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Application Test Suite">
|
|
|
|
<directory suffix="Test.php">./tests</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2019-09-13 20:05:02 +08:00
|
|
|
<extensions>
|
|
|
|
<extension class="Tests\Bootstrap"/>
|
|
|
|
</extensions>
|
2018-02-12 23:02:05 +08:00
|
|
|
<listeners>
|
|
|
|
<listener class="NunoMaduro\Collision\Adapters\Phpunit\Listener"/>
|
|
|
|
</listeners>
|
2017-06-09 02:28:26 +08:00
|
|
|
<filter>
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
|
|
<directory suffix=".php">./app</directory>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
<php>
|
2017-07-14 02:53:14 +08:00
|
|
|
<ini name="error_reporting" value="E_ALL" />
|
2017-07-04 14:12:55 +08:00
|
|
|
<ini name="display_errors" value="On" />
|
2017-07-14 02:53:14 +08:00
|
|
|
<ini name="display_startup_errors" value="On" />
|
2019-09-13 20:05:02 +08:00
|
|
|
<server name="APP_ENV" value="testing"/>
|
|
|
|
<server name="APP_KEY" value="base64:ve66Z5Kt/zTN3p++0zOPu854PHfZkwJE5VuoFAlzHtI="/>
|
|
|
|
<server name="APP_DEBUG" value="true"/>
|
|
|
|
<server name="APP_LOG_LEVEL" value="error"/>
|
|
|
|
<server name="DB_CONNECTION" value="memory"/>
|
|
|
|
<server name="CACHE_DRIVER" value="array"/>
|
|
|
|
<server name="SESSION_DRIVER" value="array"/>
|
|
|
|
<server name="QUEUE_DRIVER" value="sync"/>
|
2020-03-10 04:39:07 +08:00
|
|
|
<server name="DB_PREFIX" value="vmstest_"/>
|
2019-09-13 20:05:02 +08:00
|
|
|
<server name="APP_CONFIG_CACHE" value="bootstrap/cache/config.phpunit.php"/>
|
|
|
|
<server name="APP_SERVICES_CACHE" value="bootstrap/cache/services.phpunit.php"/>
|
|
|
|
<server name="APP_PACKAGES_CACHE" value="bootstrap/cache/packages.phpunit.php"/>
|
|
|
|
<server name="APP_ROUTES_CACHE" value="bootstrap/cache/routes.phpunit.php"/>
|
|
|
|
<server name="APP_EVENTS_CACHE" value="bootstrap/cache/events.phpunit.php"/>
|
2017-06-09 02:28:26 +08:00
|
|
|
</php>
|
|
|
|
</phpunit>
|