| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<phpunit bootstrap="./vendor/autoload.php" |
| 3 |
colors="true"> |
| 4 |
<testsuites> |
| 5 |
<testsuite name="Infrastructure Test Suite"> |
| 6 |
<directory>./tests/Infrastructure</directory> |
| 7 |
</testsuite> |
| 8 |
<testsuite name="Business Logic Test Suite"> |
| 9 |
<directory>./tests/BusinessLogic</directory> |
| 10 |
</testsuite> |
| 11 |
</testsuites> |
| 12 |
<filter> |
| 13 |
<whitelist processUncoveredFilesFromWhitelist="true"> |
| 14 |
<directory suffix=".php">./src</directory> |
| 15 |
</whitelist> |
| 16 |
</filter> |
| 17 |
</phpunit> |
| 18 |
|