|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | - |
3 | | -<phpunit backupGlobals="true" |
4 | | - backupStaticAttributes="true" |
5 | | - colors="true" |
6 | | - convertErrorsToExceptions="true" |
7 | | - convertNoticesToExceptions="true" |
8 | | - convertWarningsToExceptions="true" |
9 | | - processIsolation="false" |
10 | | - stopOnFailure="false" |
11 | | - verbose="true" |
12 | | - bootstrap="../../../../tests/bootstrap.php" |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" |
| 4 | + backupGlobals="true" |
| 5 | + backupStaticAttributes="false" |
| 6 | + colors="true" |
| 7 | + convertErrorsToExceptions="true" |
| 8 | + convertNoticesToExceptions="true" |
| 9 | + convertWarningsToExceptions="true" |
| 10 | + processIsolation="false" |
| 11 | + stopOnFailure="false" |
| 12 | + cacheResult="false" |
| 13 | + bootstrap="../../../../tests/bootstrap.php" |
13 | 14 | > |
| 15 | + <coverage> |
| 16 | + <include> |
| 17 | + <directory suffix=".php">./</directory> |
| 18 | + </include> |
| 19 | + <exclude> |
| 20 | + <directory suffix=".php">./language/</directory> |
| 21 | + <directory suffix=".php">./migrations/</directory> |
| 22 | + <directory suffix=".php">./tests/</directory> |
| 23 | + </exclude> |
| 24 | + </coverage> |
14 | 25 | <testsuites> |
15 | 26 | <testsuite name="Extension Test Suite"> |
16 | 27 | <directory suffix="_test.php">./tests</directory> |
|
20 | 31 | <directory suffix="_test.php">./tests/functional/</directory> |
21 | 32 | </testsuite> |
22 | 33 | </testsuites> |
23 | | - |
24 | | - <filter> |
25 | | - <whitelist processUncoveredFilesFromWhitelist="true"> |
26 | | - <directory suffix=".php">./</directory> |
27 | | - <exclude> |
28 | | - <directory suffix=".php">./language/</directory> |
29 | | - <directory suffix=".php">./migrations/</directory> |
30 | | - <directory suffix=".php">./tests/</directory> |
31 | | - </exclude> |
32 | | - </whitelist> |
33 | | - </filter> |
34 | 34 | </phpunit> |
0 commit comments