| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<phpunit |
| 3 |
bootstrap="tests/bootstrap.php" |
| 4 |
backupGlobals="false" |
| 5 |
colors="true" |
| 6 |
convertErrorsToExceptions="true" |
| 7 |
convertNoticesToExceptions="true" |
| 8 |
convertWarningsToExceptions="true" |
| 9 |
> |
| 10 |
<testsuites> |
| 11 |
<testsuite name="Unit"> |
| 12 |
<directory prefix="test-" suffix=".php">./tests/unit</directory> |
| 13 |
</testsuite> |
| 14 |
</testsuites> |
| 15 |
<filter> |
| 16 |
<whitelist processUncoveredFilesFromWhitelist="true"> |
| 17 |
<directory suffix=".php">./includes</directory> |
| 18 |
<exclude> |
| 19 |
<directory suffix=".php">./tests</directory> |
| 20 |
<directory suffix=".php">./vendor</directory> |
| 21 |
</exclude> |
| 22 |
</whitelist> |
| 23 |
</filter> |
| 24 |
</phpunit> |
| 25 |
|