| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<phpunit backupGlobals="false" |
| 3 |
backupStaticAttributes="false" |
| 4 |
bootstrap="vendor/autoload.php" |
| 5 |
colors="true" |
| 6 |
convertErrorsToExceptions="true" |
| 7 |
convertNoticesToExceptions="true" |
| 8 |
convertWarningsToExceptions="true" |
| 9 |
processIsolation="false" |
| 10 |
stopOnFailure="false" |
| 11 |
syntaxCheck="false" |
| 12 |
> |
| 13 |
<logging> |
| 14 |
<log type="coverage-html" |
| 15 |
target="./build/coverage/html" |
| 16 |
charset="UTF-8" |
| 17 |
highlight="false" |
| 18 |
lowUpperBound="35" |
| 19 |
highLowerBound="70"/> |
| 20 |
<log type="coverage-clover" |
| 21 |
target="./build/coverage/log/coverage.xml"/> |
| 22 |
</logging> |
| 23 |
<testsuites> |
| 24 |
<testsuite name="Package Test Suite"> |
| 25 |
<directory suffix=".php">./test/</directory> |
| 26 |
</testsuite> |
| 27 |
</testsuites> |
| 28 |
<filter> |
| 29 |
<whitelist> |
| 30 |
<directory suffix=".php">./</directory> |
| 31 |
<exclude> |
| 32 |
<directory suffix=".php">./vendor</directory> |
| 33 |
<directory suffix=".php">./test</directory> |
| 34 |
</exclude> |
| 35 |
</whitelist> |
| 36 |
</filter> |
| 37 |
</phpunit> |
| 38 |
|