|
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 |
| - stopOnError="false" |
11 |
| - stopOnFailure="false" |
12 |
| - verbose="true" |
| 2 | +<phpunit |
| 3 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" |
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 5 | + backupGlobals="false" |
| 6 | + backupStaticAttributes="false" |
| 7 | + bootstrap="vendor/autoload.php" |
| 8 | + colors="true" |
| 9 | + convertErrorsToExceptions="true" |
| 10 | + convertNoticesToExceptions="true" |
| 11 | + convertWarningsToExceptions="true" |
| 12 | + processIsolation="false" |
| 13 | + stopOnError="false" |
| 14 | + stopOnFailure="false" |
| 15 | + verbose="true" |
13 | 16 | >
|
| 17 | + <coverage processUncoveredFiles="true"> |
| 18 | + <include> |
| 19 | + <directory suffix=".php">./src</directory> |
| 20 | + </include> |
| 21 | + <report> |
| 22 | + <clover outputFile="build/logs/clover.xml"/> |
| 23 | + <html outputDirectory="build/logs/coverage"/> |
| 24 | + <text outputFile="build/logs/coverage.txt"/> |
| 25 | + </report> |
| 26 | + </coverage> |
14 | 27 | <php>
|
15 | 28 | <env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
|
16 | 29 | </php>
|
|
19 | 32 | <directory suffix="Test.php">./tests</directory>
|
20 | 33 | </testsuite>
|
21 | 34 | </testsuites>
|
22 |
| - <filter> |
23 |
| - <whitelist processUncoveredFilesFromWhitelist="true"> |
24 |
| - <directory suffix=".php">./src</directory> |
25 |
| - </whitelist> |
26 |
| - </filter> |
27 |
| - <logging> |
28 |
| - <log type="coverage-clover" target="build/logs/clover.xml"/> |
29 |
| - <log type="coverage-text" target="build/logs/coverage.txt"/> |
30 |
| - <log type="coverage-html" target="build/logs/coverage"/> |
31 |
| - </logging> |
32 | 35 | </phpunit>
|
0 commit comments