Skip to content

Commit 241c7bf

Browse files
committed
Migrate phpunit.xml config
1 parent 249f046 commit 241c7bf

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/.idea
22
/.vscode
3+
/.phpunit.cache
34
/vendor
45
.php-cs-fixer.cache
56
.phpunit.result.cache

phpunit.xml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
convertDeprecationsToExceptions="true"
5-
convertErrorsToExceptions="true"
6-
convertNoticesToExceptions="true"
7-
convertWarningsToExceptions="true"
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
4+
backupGlobals="false"
85
processIsolation="false"
96
bootstrap="vendor/autoload.php"
107
colors="true"
118
stopOnFailure="false"
12-
>
9+
cacheDirectory=".phpunit.cache"
10+
backupStaticProperties="false">
1311
<testsuites>
1412
<testsuite name="Multi Payment Test Suite">
1513
<directory suffix="Test.php">./tests</directory>

0 commit comments

Comments
 (0)