Skip to content
This repository was archived by the owner on Jun 10, 2024. It is now read-only.

Commit e3e7eec

Browse files
committed
phpunit.xml file updated
1 parent e9d7278 commit e3e7eec

File tree

1 file changed

+15
-23
lines changed

1 file changed

+15
-23
lines changed

Diff for: phpunit.xml.dist

+15-23
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,17 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
bootstrap="vendor/autoload.php"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnFailure="false">
11-
<testsuites>
12-
<testsuite name="Unit">
13-
<directory>./tests</directory>
14-
</testsuite>
15-
</testsuites>
16-
<filter>
17-
<whitelist processUncoveredFilesFromWhitelist="true">
18-
<directory suffix=".php">./src</directory>
19-
<exclude>
20-
<directory suffix=".php">./vendor</directory>
21-
<directory suffix=".php">./config</directory>
22-
</exclude>
23-
</whitelist>
24-
</filter>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage processUncoveredFiles="true">
4+
<include>
5+
<directory suffix=".php">./src</directory>
6+
</include>
7+
<exclude>
8+
<directory suffix=".php">./vendor</directory>
9+
<directory suffix=".php">./config</directory>
10+
</exclude>
11+
</coverage>
12+
<testsuites>
13+
<testsuite name="Unit">
14+
<directory>./tests</directory>
15+
</testsuite>
16+
</testsuites>
2517
</phpunit>

0 commit comments

Comments
 (0)