| 1 |
<phpunit backupGlobals="false" |
| 2 |
bootstrap="tests/bootstrap.php" |
| 3 |
colors="true" |
| 4 |
beStrictAboutChangesToGlobalState="true" |
| 5 |
beStrictAboutOutputDuringTests="true" |
| 6 |
beStrictAboutTestsThatDoNotTestAnything="true" |
| 7 |
> |
| 8 |
<testsuites> |
| 9 |
<testsuite name="all"> |
| 10 |
<directory>tests</directory> |
| 11 |
</testsuite> |
| 12 |
</testsuites> |
| 13 |
<filter> |
| 14 |
<whitelist> |
| 15 |
<directory suffix=".php">src/</directory> |
| 16 |
</whitelist> |
| 17 |
</filter> |
| 18 |
</phpunit> |
| 19 |
|