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