Skip to content

Commit 52ddd9d

Browse files
committed
atualize phpunit.xml para a ultima versão
1 parent fee01f8 commit 52ddd9d

File tree

1 file changed

+19
-24
lines changed

1 file changed

+19
-24
lines changed

phpunit.xml

Lines changed: 19 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit bootstrap="vendor/autoload.php"
3-
backupGlobals="false"
4-
backupStaticAttributes="false"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnFailure="false">
11-
<testsuites>
12-
<testsuite name="Package Test Suite">
13-
<directory suffix=".php">./tests/</directory>
14-
</testsuite>
15-
</testsuites>
16-
<filter>
17-
<whitelist processUncoveredFilesFromWhitelist="true">
18-
<directory>./src/</directory>
19-
</whitelist>
20-
</filter>
21-
<logging>
22-
<log type="coverage-html" target="./tests/log/report"
23-
lowUpperBound="35" highLowerBound="70"/>
24-
<log type="coverage-clover" target="./tests/log/clover.xml"/>
25-
</logging>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<php>
4+
<env name="XDEBUG_MODE" value="coverage"/>
5+
</php>
6+
<coverage processUncoveredFiles="true">
7+
<include>
8+
<directory>./src/</directory>
9+
</include>
10+
<report>
11+
<clover outputFile="./tests/log/clover.xml"/>
12+
<html outputDirectory="./tests/log/report" lowUpperBound="35" highLowerBound="70"/>
13+
</report>
14+
</coverage>
15+
<testsuites>
16+
<testsuite name="Package Test Suite">
17+
<directory suffix=".php">./tests/</directory>
18+
</testsuite>
19+
</testsuites>
20+
<logging/>
2621
</phpunit>

0 commit comments

Comments
 (0)