|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<phpunit |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/latest/phpunit.xsd" |
5 | | - backupGlobals="false" |
6 | | - backupStaticAttributes="false" |
7 | | - bootstrap="vendor/autoload.php" |
8 | | - colors="true" |
9 | | - convertErrorsToExceptions="true" |
10 | | - convertNoticesToExceptions="true" |
11 | | - convertWarningsToExceptions="true" |
12 | | - forceCoversAnnotation="false" |
13 | | - processIsolation="false" |
14 | | - stopOnError="false" |
15 | | - stopOnFailure="false" |
16 | | - stopOnIncomplete="false" |
17 | | - stopOnSkipped="false" |
18 | | - stopOnRisky="false" |
19 | | - verbose="false" |
20 | | -> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd" |
| 4 | + bootstrap="vendor/autoload.php" |
| 5 | + cacheResultFile=".phpunit.cache/test-results" |
| 6 | + executionOrder="depends,defects" |
| 7 | + forceCoversAnnotation="true" |
| 8 | + beStrictAboutCoversAnnotation="true" |
| 9 | + beStrictAboutOutputDuringTests="true" |
| 10 | + beStrictAboutTodoAnnotatedTests="true" |
| 11 | + failOnRisky="true" |
| 12 | + failOnWarning="true" |
| 13 | + verbose="true"> |
21 | 14 | <php> |
22 | 15 | <env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/> |
23 | 16 | </php> |
24 | 17 | <testsuites> |
25 | | - <testsuite name="Test Suite"> |
26 | | - <directory suffix="Test.php">./tests</directory> |
| 18 | + <testsuite name="default"> |
| 19 | + <directory suffix="Test.php">tests</directory> |
27 | 20 | </testsuite> |
28 | 21 | </testsuites> |
29 | | - <coverage processUncoveredFiles="true"> |
| 22 | + |
| 23 | + <coverage |
| 24 | + cacheDirectory=".phpunit.cache/code-coverage" |
| 25 | + processUncoveredFiles="true"> |
30 | 26 | <include> |
31 | | - <directory suffix=".php">./app</directory> |
| 27 | + <directory suffix=".php">src</directory> |
32 | 28 | </include> |
33 | 29 | </coverage> |
34 | 30 | </phpunit> |
0 commit comments