XBackBone/phpunit.xml
2020-04-15 00:08:51 +02:00

27 lines
920 B
XML

<?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>
<testsuite name="Tests">
<directory suffix="Test.php">tests/Feature</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<directory>bin</directory>
<directory>docs</directory>
<directory>resources</directory>
<directory>vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>