| 1 |
<phpunit |
| 2 |
bootstrap="tests/bootstrap.php" |
| 3 |
backupGlobals="false" |
| 4 |
colors="true" |
| 5 |
convertErrorsToExceptions="true" |
| 6 |
convertNoticesToExceptions="true" |
| 7 |
convertWarningsToExceptions="true" |
| 8 |
> |
| 9 |
<testsuites name="General Unit tests ( Requires PHP 5.4) "> |
| 10 |
<testsuite> |
| 11 |
<directory phpVersion="5.4.0" phpVersionOperator=">=" suffix="-test.php">./tests/</directory> |
| 12 |
<exclude>./tests/old/</exclude> |
| 13 |
</testsuite> |
| 14 |
</testsuites> |
| 15 |
<testsuites name="Bail lower php versions( For PHP lower than 5.4) "> |
| 16 |
<testsuite> |
| 17 |
<directory phpVersion="5.4.0" phpVersionOperator="lt" suffix="-test.php">./tests/old/</directory> |
| 18 |
</testsuite> |
| 19 |
</testsuites> |
| 20 |
</phpunit> |