|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<phpunit bootstrap="vendor/autoload.php" |
3 |
| - backupGlobals="false" |
4 |
| - backupStaticAttributes="false" |
5 |
| - colors="true" |
6 |
| - verbose="true" |
7 |
| - convertErrorsToExceptions="true" |
8 |
| - convertNoticesToExceptions="true" |
9 |
| - convertWarningsToExceptions="true" |
10 |
| - processIsolation="false" |
11 |
| - stopOnFailure="false"> |
12 |
| - <testsuites> |
13 |
| - <testsuite name="Unit"> |
14 |
| - <directory suffix="Test.php">./tests/Unit</directory> |
15 |
| - </testsuite> |
16 |
| - </testsuites> |
17 |
| - <filter> |
18 |
| - <whitelist addUncoveredFilesFromWhitelist="false"> |
19 |
| - <directory suffix=".php">src/</directory> |
20 |
| - </whitelist> |
21 |
| - </filter> |
22 |
| - <logging> |
23 |
| - <log type="junit" target="build/report.junit.xml"/> |
24 |
| - <log type="coverage-clover" target="build/clover.xml"/> |
25 |
| - </logging> |
26 |
| - <php> |
27 |
| - <env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsm1"/> |
28 |
| - <env name="APP_ENV" value="testing"/> |
29 |
| - <env name="APP_URL" value="http://localhost"/> |
30 |
| - <env name="DB_DATABASE" value=":memory:"/> |
31 |
| - <env name="DB_CONNECTION" value="sqlite"/> |
32 |
| - </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.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> |
| 3 | + <coverage includeUncoveredFiles="false"> |
| 4 | + <include> |
| 5 | + <directory suffix=".php">src/</directory> |
| 6 | + </include> |
| 7 | + <report> |
| 8 | + <clover outputFile="build/clover.xml"/> |
| 9 | + </report> |
| 10 | + </coverage> |
| 11 | + <testsuites> |
| 12 | + <testsuite name="Unit"> |
| 13 | + <directory suffix="Test.php">./tests/Unit</directory> |
| 14 | + </testsuite> |
| 15 | + </testsuites> |
| 16 | + <logging> |
| 17 | + <junit outputFile="build/report.junit.xml"/> |
| 18 | + </logging> |
| 19 | + <php> |
| 20 | + <env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsm1"/> |
| 21 | + <env name="APP_ENV" value="testing"/> |
| 22 | + <env name="APP_URL" value="http://localhost"/> |
| 23 | + <env name="DB_DATABASE" value=":memory:"/> |
| 24 | + <env name="DB_CONNECTION" value="sqlite"/> |
| 25 | + </php> |
33 | 26 | </phpunit>
|
0 commit comments