| 1 |
<phpunit bootstrap="tests/bootstrap.php" colors="true"> |
| 2 |
<testsuites> |
| 3 |
<testsuite name="UserAccessManager Test Suite"> |
| 4 |
<directory suffix=".php">./tests</directory> |
| 5 |
</testsuite> |
| 6 |
</testsuites> |
| 7 |
<filter> |
| 8 |
<blacklist> |
| 9 |
<directory>./tests</directory> |
| 10 |
</blacklist> |
| 11 |
<whitelist processUncoveredFilesFromWhitelist="true"> |
| 12 |
<directory suffix=".php">./class</directory> |
| 13 |
</whitelist> |
| 14 |
</filter> |
| 15 |
<logging> |
| 16 |
<log type="coverage-html" target="./tmp/coverage" charset="UTF-8" /> |
| 17 |
</logging> |
| 18 |
</phpunit> |
| 19 |
|