1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <[email protected]>
Date: Mon, 29 May 2023 09:34:54 0200
Subject: =?utf-8?q?Use_=E2=80=9Cphpunit_--migrate-configuration=E2=80=9D?=
---
phpunit.xml.dist | 35 -----------------------
1 file changed, 12 insertions( ), 23 deletions(-)
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
index 5de888b..31ea756 100644
--- a/phpunit.xml.dist
b/phpunit.xml.dist
@@ -1,25 1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
-
-<phpunit backupGlobals="false"
- backupStaticAttributes="false"
- colors="true"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- processIsolation="false"
- stopOnFailure="false"
- syntaxCheck="false"
- bootstrap="tests/bootstrap.php"
->
- <testsuites>
- <testsuite name="JSON Lint Test Suite">
- <directory>./tests/</directory>
- </testsuite>
- </testsuites>
-
- <filter>
- <whitelist>
- <directory>./src/Seld/JsonLint/</directory>
- </whitelist>
- </filter>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" bootstrap="tests/bootstrap.php" cacheDirectory=".phpunit.cache">
<coverage/>
<testsuites>
<testsuite name="JSON Lint Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>./src/Seld/JsonLint/</directory>
</include>
</source>
</phpunit>
|