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

Commit f8ec91a

Browse files
committed
Migrate phpunit.xml.dist because phpunit-Warning.
1 parent efc1007 commit f8ec91a

File tree

1 file changed

+16
-18
lines changed

1 file changed

+16
-18
lines changed

phpunit.xml.dist

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
3-
<phpunit colors="true">
4-
<testsuites>
5-
<testsuite name="DeepL Library Test Suite">
6-
<directory>tests/</directory>
7-
</testsuite>
8-
</testsuites>
9-
10-
<filter>
11-
<whitelist>
12-
<directory suffix=".php">src/</directory>
13-
</whitelist>
14-
</filter>
15-
16-
<logging>
17-
<log type="coverage-clover" target="build/clover.xml" />
18-
</logging>
19-
</phpunit>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage>
4+
<include>
5+
<directory suffix=".php">src/</directory>
6+
</include>
7+
<report>
8+
<clover outputFile="build/clover.xml"/>
9+
</report>
10+
</coverage>
11+
<testsuites>
12+
<testsuite name="DeepL Library Test Suite">
13+
<directory>tests/</directory>
14+
</testsuite>
15+
</testsuites>
16+
<logging/>
17+
</phpunit>

0 commit comments

Comments
 (0)