|
1 |
| -<?xml version="1.0"?> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <phpunit
|
3 |
| - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 |
| - xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" |
5 |
| - bootstrap="tests/bootstrap.php" |
6 |
| - backupGlobals="false" |
7 |
| - backupStaticAttributes="false" |
8 |
| - colors="true" |
9 |
| - convertDeprecationsToExceptions="true" |
10 |
| - convertErrorsToExceptions="true" |
11 |
| - convertNoticesToExceptions="true" |
12 |
| - convertWarningsToExceptions="true" |
13 |
| - processIsolation="false" |
14 |
| - stopOnFailure="false"> |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.2/phpunit.xsd" |
| 5 | + backupGlobals="true" |
| 6 | + beStrictAboutTestsThatDoNotTestAnything="true" |
| 7 | + bootstrap="./vendor/autoload.php" |
| 8 | + colors="true" |
| 9 | + convertDeprecationsToExceptions="true" |
| 10 | + convertErrorsToExceptions="true" |
| 11 | + convertNoticesToExceptions="true" |
| 12 | + convertWarningsToExceptions="true" |
| 13 | + forceCoversAnnotation="true" |
| 14 | + stopOnFailure="false" |
| 15 | + verbose="true" |
| 16 | +> |
| 17 | + |
| 18 | + <testsuites> |
| 19 | + <testsuite name="PHP-Var-Dump-Check"> |
| 20 | + <directory suffix="Test.php">tests</directory> |
| 21 | + </testsuite> |
| 22 | + </testsuites> |
| 23 | + |
| 24 | + <filter> |
| 25 | + <whitelist addUncoveredFilesFromWhitelist="true"> |
| 26 | + <directory suffix=".php">src</directory> |
| 27 | + </whitelist> |
| 28 | + </filter> |
15 | 29 |
|
16 | 30 | <logging>
|
17 | 31 | <log type="coverage-clover" target="build/logs/clover.xml"/>
|
18 | 32 | <log type="coverage-html" target="build/coverage/"/>
|
19 | 33 | <log type="coverage-text" target="php://stdout" showOnlySummary="true"/>
|
20 | 34 | </logging>
|
21 | 35 |
|
22 |
| - <testsuites> |
23 |
| - <testsuite name="Default tests"> |
24 |
| - <directory>tests</directory> |
25 |
| - </testsuite> |
26 |
| - </testsuites> |
| 36 | + <php> |
| 37 | + <ini name="memory_limit" value="256M"/> |
| 38 | + </php> |
27 | 39 | </phpunit>
|
0 commit comments