| 1 |
<?xml version="1.0"?> |
| 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="Simple Urls unit test"> |
| 12 |
<directory prefix="test-" suffix=".php">./tests/</directory> |
| 13 |
<exclude>./tests/test-sample.php</exclude> |
| 14 |
</testsuite> |
| 15 |
</testsuites> |
| 16 |
<filter> |
| 17 |
<whitelist processUncoveredFilesFromWhitelist="true"> |
| 18 |
<directory suffix=".php">tests</directory> |
| 19 |
</whitelist> |
| 20 |
</filter> |
| 21 |
<logging> |
| 22 |
<log type="coverage-clover" target="./build/logs/clover.xml"/> |
| 23 |
<log type="coverage-html" target="./build/coverage/"/> |
| 24 |
</logging> |
| 25 |
</phpunit> |
| 26 |
|