array-object-array/phpunit.xml.dist

31 lines
876 B
Plaintext
Raw Normal View History

2016-07-19 14:54:35 -07:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php"
verbose="true"
debug="true"
>
2016-07-21 14:56:56 -07:00
<logging>
<log type="coverage-clover" target="build/logs/clover.xml" />
</logging>
2016-07-19 14:54:35 -07:00
<testsuites>
<testsuite name="ArrayObjectArray tests">
<directory>./tests/Sikofitt</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src</directory>
</whitelist>
</filter>
</phpunit>