| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
|
| 3 |
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html --> |
| 4 |
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 5 |
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" |
| 6 |
backupGlobals="false" |
| 7 |
colors="true" |
| 8 |
bootstrap="tests/bootstrap.php" |
| 9 |
> |
| 10 |
<php> |
| 11 |
<ini name="error_reporting" value="-1"/> |
| 12 |
<server name="APP_ENV" value="test" force="true"/> |
| 13 |
</php> |
| 14 |
|
| 15 |
<testsuites> |
| 16 |
<testsuite name="Project Test Suite"> |
| 17 |
<directory>tests</directory> |
| 18 |
</testsuite> |
| 19 |
</testsuites> |
| 20 |
|
| 21 |
<coverage/> |
| 22 |
|
| 23 |
<source> |
| 24 |
<include> |
| 25 |
<directory>src/Packetery/Core</directory> |
| 26 |
</include> |
| 27 |
</source> |
| 28 |
</phpunit> |
| 29 |
|