Skip to content

Commit e2f0df5

Browse files
committed
Upgrade phpunit.xml.dist
1 parent c918898 commit e2f0df5

File tree

1 file changed

+12
-21
lines changed

1 file changed

+12
-21
lines changed

phpunit.xml.dist

Lines changed: 12 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit
3-
colors="true"
4-
cacheResult="true"
5-
stopOnFailure="false"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
backupGlobals="false"
10-
backupStaticAttributes="false"
11-
failOnRisky="true"
12-
failOnWarning="true"
13-
>
14-
<testsuite name="Open Code Modeling Code AST - Test Suite">
15-
<directory suffix=".php">./tests</directory>
16-
</testsuite>
17-
18-
<filter>
19-
<whitelist>
20-
<directory>./src/</directory>
21-
</whitelist>
22-
</filter>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" cacheResult="true" stopOnFailure="false"
3+
convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true"
4+
backupGlobals="false" backupStaticAttributes="false" failOnRisky="true" failOnWarning="true"
5+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
6+
<coverage>
7+
<include>
8+
<directory>./src/</directory>
9+
</include>
10+
</coverage>
11+
<testsuite name="Open Code Modeling Code AST - Test Suite">
12+
<directory suffix=".php">./tests</directory>
13+
</testsuite>
2314
</phpunit>

0 commit comments

Comments
 (0)