XBackBone/phpunit.xml

30 lines
935 B
XML
Raw Normal View History

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>
</phpunit>