| 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="testing"> |
| 12 |
<directory suffix="_test.php">./tests/phpunit</directory> |
| 13 |
<exclude>./tests/test-sample.php</exclude> |
| 14 |
</testsuite> |
| 15 |
</testsuites> |
| 16 |
</phpunit> |
| 17 |
|