| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<phpunit bootstrap="./vendor/autoload.php" |
| 3 |
colors="true" |
| 4 |
convertErrorsToExceptions="true" |
| 5 |
convertNoticesToExceptions="true" |
| 6 |
convertWarningsToExceptions="true" |
| 7 |
stopOnFailure="false"> |
| 8 |
<testsuites> |
| 9 |
<testsuite name="tests"> |
| 10 |
<directory>./test/Api</directory> |
| 11 |
<directory>./test/Model</directory> |
| 12 |
</testsuite> |
| 13 |
</testsuites> |
| 14 |
<filter> |
| 15 |
<whitelist processUncoveredFilesFromWhitelist="true"> |
| 16 |
<directory suffix=".php">./lib/Api</directory> |
| 17 |
<directory suffix=".php">./lib/Model</directory> |
| 18 |
</whitelist> |
| 19 |
</filter> |
| 20 |
<php> |
| 21 |
<ini name="error_reporting" value="E_ALL" /> |
| 22 |
</php> |
| 23 |
</phpunit> |
| 24 |
|