Skip to content

Commit e86a441

Browse files
committed
wip
1 parent bbbd527 commit e86a441

File tree

1 file changed

+30
-18
lines changed

1 file changed

+30
-18
lines changed

phpunit.xml.dist

Lines changed: 30 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,39 @@
1-
<?xml version="1.0"?>
1+
<?xml version="1.0" encoding="UTF-8"?>
22
<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>
1529

1630
<logging>
1731
<log type="coverage-clover" target="build/logs/clover.xml"/>
1832
<log type="coverage-html" target="build/coverage/"/>
1933
<log type="coverage-text" target="php://stdout" showOnlySummary="true"/>
2034
</logging>
2135

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>
2739
</phpunit>

0 commit comments

Comments
 (0)