|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - backupGlobals="false" |
4 | | - bootstrap="./vendor/autoload.php" |
5 | | - colors="true" |
6 | | - processIsolation="false" |
7 | | - stopOnFailure="false" |
8 | | - xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" |
9 | | - backupStaticProperties="false"> |
10 | | - <coverage/> |
| 3 | + xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" |
| 4 | + bootstrap="vendor/autoload.php" |
| 5 | + cacheDirectory=".phpunit.cache" |
| 6 | + executionOrder="depends,defects" |
| 7 | + shortenArraysForExportThreshold="10" |
| 8 | + requireCoverageMetadata="true" |
| 9 | + beStrictAboutCoverageMetadata="true" |
| 10 | + beStrictAboutOutputDuringTests="true" |
| 11 | + displayDetailsOnPhpunitDeprecations="true" |
| 12 | + failOnPhpunitDeprecation="true" |
| 13 | + failOnRisky="true" |
| 14 | + failOnWarning="true"> |
11 | 15 | <testsuites> |
12 | | - <testsuite name="Integration"> |
13 | | - <directory suffix="Test.php">./tests/Integration</directory> |
14 | | - </testsuite> |
15 | | - <testsuite name="Unit"> |
16 | | - <directory suffix="Test.php">./tests/Unit</directory> |
| 16 | + <testsuite name="Tests"> |
| 17 | + <directory>tests</directory> |
17 | 18 | </testsuite> |
18 | 19 | </testsuites> |
19 | | - <source> |
| 20 | + |
| 21 | + <source ignoreIndirectDeprecations="true" restrictNotices="true" restrictWarnings="true"> |
20 | 22 | <include> |
21 | | - <directory suffix=".php">./src</directory> |
| 23 | + <directory>src</directory> |
22 | 24 | </include> |
23 | 25 | </source> |
24 | 26 | </phpunit> |
0 commit comments