Skip to content

Commit 1ee8263

Browse files
committed
Updated the phpunit.xml.dist file
1 parent 7f63fd8 commit 1ee8263

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

phpunit.xml.dist

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit bootstrap="vendor/autoload.php" colors="true">
3-
<testsuites>
4-
<testsuite name="ActiveCampaign API SDK">
5-
<directory>tests/</directory>
6-
</testsuite>
7-
</testsuites>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
colors="true">
6+
<coverage>
7+
<include>
8+
<directory suffix=".php">src/</directory>
9+
</include>
10+
<report>
11+
<clover outputFile="build/logs/clover.xml"/>
12+
</report>
13+
</coverage>
814

9-
<filter>
10-
<whitelist>
11-
<directory suffix=".php">src/</directory>
12-
</whitelist>
13-
</filter>
14-
15-
<logging>
16-
<log type="coverage-clover" target="build/logs/clover.xml"/>
17-
</logging>
15+
<testsuites>
16+
<testsuite name="ActiveCampaign API SDK">
17+
<directory>tests/</directory>
18+
</testsuite>
19+
</testsuites>
1820
</phpunit>

0 commit comments

Comments
 (0)