| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
|
| 3 |
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html --> |
| 4 |
<phpunit |
| 5 |
backupGlobals = "false" |
| 6 |
backupStaticAttributes = "false" |
| 7 |
strict = "false" |
| 8 |
colors = "true" |
| 9 |
convertErrorsToExceptions = "true" |
| 10 |
convertNoticesToExceptions = "true" |
| 11 |
convertWarningsToExceptions = "true" |
| 12 |
processIsolation = "false" |
| 13 |
stopOnFailure = "false" |
| 14 |
syntaxCheck = "false"> |
| 15 |
|
| 16 |
<testsuites> |
| 17 |
<testsuite name="Project Test Suite"> |
| 18 |
<directory>tests</directory> |
| 19 |
</testsuite> |
| 20 |
</testsuites> |
| 21 |
|
| 22 |
<filter> |
| 23 |
<whitelist> |
| 24 |
<directory>.</directory> |
| 25 |
</whitelist> |
| 26 |
</filter> |
| 27 |
|
| 28 |
</phpunit> |
| 29 |
|