|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<phpunit |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - bootstrap="vendor/autoload.php" |
5 | | - backupGlobals="false" |
6 | | - backupStaticAttributes="false" |
7 | | - colors="true" |
8 | | - verbose="true" |
9 | | - convertErrorsToExceptions="true" |
10 | | - convertNoticesToExceptions="true" |
11 | | - convertWarningsToExceptions="true" |
12 | | - processIsolation="false" |
13 | | - stopOnFailure="false" |
14 | | - xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" |
15 | | -> |
16 | | - <coverage> |
17 | | - <include> |
18 | | - <directory suffix=".php">src/</directory> |
19 | | - </include> |
20 | | - <report> |
21 | | - <html outputDirectory="tests/reports/report" lowUpperBound="35" highLowerBound="70"/> |
22 | | - </report> |
23 | | - </coverage> |
24 | | - <testsuites> |
25 | | - <testsuite name="Unit"> |
26 | | - <directory suffix="Test.php">./tests/Unit</directory> |
27 | | - </testsuite> |
28 | | - <testsuite name="Feature"> |
29 | | - <directory suffix="Test.php">./tests/Feature</directory> |
30 | | - </testsuite> |
31 | | - </testsuites> |
32 | | - <logging> |
33 | | - <testdoxText outputFile="tests/reports/testdox.txt"/> |
34 | | - </logging> |
35 | | - <php> |
36 | | - <env name="DB_CONNECTION" value="testing"/> |
37 | | - <env name="APP_KEY" value="base64:bWVpbmRlci1hL2ZpbHRlcnMKc3RhciBpdCE="/> |
38 | | - </php> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> |
| 3 | + <coverage> |
| 4 | + <report> |
| 5 | + <html outputDirectory="tests/reports/report" lowUpperBound="35" highLowerBound="70"/> |
| 6 | + </report> |
| 7 | + </coverage> |
| 8 | + <testsuites> |
| 9 | + <testsuite name="Unit"> |
| 10 | + <directory suffix="Test.php">./tests/Unit</directory> |
| 11 | + </testsuite> |
| 12 | + <testsuite name="Feature"> |
| 13 | + <directory suffix="Test.php">./tests/Feature</directory> |
| 14 | + </testsuite> |
| 15 | + </testsuites> |
| 16 | + <logging> |
| 17 | + <testdoxText outputFile="tests/reports/testdox.txt"/> |
| 18 | + </logging> |
| 19 | + <php> |
| 20 | + <env name="DB_CONNECTION" value="testing"/> |
| 21 | + <env name="APP_KEY" value="base64:bWVpbmRlci1hL2ZpbHRlcnMKc3RhciBpdCE="/> |
| 22 | + </php> |
| 23 | + <source> |
| 24 | + <include> |
| 25 | + <directory suffix=".php">src/</directory> |
| 26 | + </include> |
| 27 | + </source> |
39 | 28 | </phpunit> |
0 commit comments