2020-04-14 22:08:51 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit bootstrap="tests/bootstrap.php"
|
|
|
|
colors="true"
|
|
|
|
backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
cacheResult="false"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true">
|
|
|
|
<testsuites>
|
2020-09-01 15:22:16 +00:00
|
|
|
<testsuite name="Feature">
|
2020-04-14 22:08:51 +00:00
|
|
|
<directory suffix="Test.php">tests/Feature</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<filter>
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
2020-09-01 15:22:16 +00:00
|
|
|
<directory suffix=".php">app</directory>
|
2020-09-02 09:19:19 +00:00
|
|
|
<exclude>
|
|
|
|
<file>app/routes.php</file>
|
|
|
|
</exclude>
|
2020-04-14 22:08:51 +00:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2020-09-01 15:22:16 +00:00
|
|
|
<logging>
|
|
|
|
<log type="coverage-html" target="./coverage"
|
|
|
|
lowUpperBound="70"
|
|
|
|
highLowerBound="90"/>
|
|
|
|
</logging>
|
2020-09-26 18:53:07 +00:00
|
|
|
<php>
|
|
|
|
<server name="HTTP_HOST" value="localhost"/>
|
|
|
|
<server name="HTTPS" value="false"/>
|
|
|
|
</php>
|
2020-09-01 15:22:16 +00:00
|
|
|
</phpunit>
|