|
1 | | -<?xml version="1.0"?> |
2 | | -<phpunit |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" |
5 | | - backupGlobals="true" |
6 | | - colors="false" |
7 | | - processIsolation="false" |
8 | | - stopOnError="false" |
9 | | - stopOnFailure="false" |
10 | | - stopOnIncomplete="false" |
11 | | - stopOnSkipped="false" |
12 | | - stopOnRisky="false" |
13 | | - timeoutForSmallTests="1" |
14 | | - timeoutForMediumTests="10" |
15 | | - timeoutForLargeTests="60" |
16 | | - cacheDirectory=".phpunit.cache" |
17 | | - backupStaticProperties="false" |
18 | | - requireCoverageMetadata="false"> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" |
| 4 | + backupGlobals="true" |
| 5 | + colors="false" |
| 6 | + processIsolation="false" |
| 7 | + stopOnError="false" |
| 8 | + stopOnFailure="false" |
| 9 | + stopOnIncomplete="false" |
| 10 | + stopOnSkipped="false" |
| 11 | + stopOnRisky="false" |
| 12 | + timeoutForSmallTests="1" |
| 13 | + timeoutForMediumTests="10" |
| 14 | + timeoutForLargeTests="60" |
| 15 | + cacheDirectory=".phpunit.cache" |
| 16 | + backupStaticProperties="false" |
| 17 | + requireCoverageMetadata="false" |
| 18 | + bootstrap="vendor/autoload.php" |
| 19 | + executionOrder="depends,defects" |
| 20 | + beStrictAboutCoverageMetadata="true" |
| 21 | + beStrictAboutOutputDuringTests="true" |
| 22 | + failOnRisky="true" |
| 23 | + failOnWarning="true"> |
19 | 24 | <testsuites> |
20 | 25 | <testsuite name="Functional tests"> |
21 | | - <directory>tests/functional/</directory> |
| 26 | + <directory>tests/functional</directory> |
22 | 27 | </testsuite> |
23 | 28 | </testsuites> |
| 29 | + <source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true"> |
| 30 | + <include> |
| 31 | + <directory>src</directory> |
| 32 | + </include> |
| 33 | + </source> |
24 | 34 | <php> |
25 | 35 | <ini name="allow_url_include" value="1" /> |
26 | 36 | </php> |
|
0 commit comments