| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 |
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" |
| 4 |
bootstrap="tests/bootstrap.php" |
| 5 |
cacheDirectory=".phpunit.cache" |
| 6 |
executionOrder="depends,defects" |
| 7 |
requireCoverageMetadata="true" |
| 8 |
beStrictAboutCoverageMetadata="true" |
| 9 |
beStrictAboutOutputDuringTests="true" |
| 10 |
displayDetailsOnPhpunitDeprecations="true" |
| 11 |
failOnPhpunitDeprecation="true" |
| 12 |
failOnRisky="true" |
| 13 |
failOnWarning="true"> |
| 14 |
|
| 15 |
<testsuites> |
| 16 |
<testsuite name="default"> |
| 17 |
<directory>tests</directory> |
| 18 |
</testsuite> |
| 19 |
</testsuites> |
| 20 |
|
| 21 |
<source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true"> |
| 22 |
<include> |
| 23 |
<directory>src</directory> |
| 24 |
</include> |
| 25 |
</source> |
| 26 |
</phpunit> |
| 27 |
|