Skip to content

Commit 3600eb0

Browse files
committed
Migrate to PHPUnit 10 config file
$ vendor/bin/phpunit --migrate-configuration
1 parent 782346f commit 3600eb0

1 file changed

Lines changed: 14 additions & 6 deletions

File tree

phpunit.xml.dist

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false">
2+
<phpunit
3+
colors="true"
4+
stopOnError="false"
5+
stopOnFailure="false"
6+
stopOnIncomplete="false"
7+
stopOnSkipped="false"
8+
failOnWarning="false"
9+
failOnDeprecation="false"
10+
>
311
<testsuites>
412
<testsuite name="all">
513
<directory suffix="Test.php">tests/</directory>
614
</testsuite>
715
</testsuites>
8-
<filter>
9-
<whitelist processUncoveredFilesFromWhitelist="true">
16+
<source>
17+
<include>
1018
<directory suffix=".php">src/</directory>
11-
</whitelist>
12-
</filter>
13-
</phpunit>
19+
</include>
20+
</source>
21+
</phpunit>

0 commit comments

Comments
 (0)