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