phpunit.xml
28 lines
| 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="bootstrap.php" |
| 5 | colors="true" |
| 6 | cacheDirectory=".phpunit.cache" |
| 7 | executionOrder="depends,defects" |
| 8 | requireCoverageMetadata="false" |
| 9 | beStrictAboutCoverageMetadata="false" |
| 10 | beStrictAboutOutputDuringTests="true" |
| 11 | failOnRisky="true" |
| 12 | failOnWarning="true"> |
| 13 | <testsuites> |
| 14 | <testsuite name="Unit"> |
| 15 | <directory>Unit</directory> |
| 16 | </testsuite> |
| 17 | <testsuite name="Providers"> |
| 18 | <directory>Unit/Providers</directory> |
| 19 | </testsuite> |
| 20 | </testsuites> |
| 21 | |
| 22 | <source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true"> |
| 23 | <include> |
| 24 | <directory>../class</directory> |
| 25 | </include> |
| 26 | </source> |
| 27 | </phpunit> |
| 28 |