Skip to content

Commit 5d098cd

Browse files
authored
Update phpunit.xml
1 parent 0d36fcf commit 5d098cd

File tree

1 file changed

+15
-13
lines changed

1 file changed

+15
-13
lines changed

phpunit.xml

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
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-
syntaxCheck="false"
12-
>
2+
<phpunit colors="true" bootstrap="./vendor/autoload.php" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false">
133
<testsuites>
14-
<testsuite name="Package Test Suite">
15-
<directory suffix=".php">./tests/</directory>
4+
<testsuite name="all">
5+
<directory suffix="Test.php">tests/</directory>
166
</testsuite>
177
</testsuites>
8+
<filter>
9+
<whitelist>
10+
<directory suffix=".php">src/</directory>
11+
</whitelist>
12+
</filter>
13+
<logging>
14+
<log type="tap" target="build/report.tap"/>
15+
<log type="junit" target="build/report.junit.xml"/>
16+
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
17+
<log type="coverage-text" target="build/coverage.txt"/>
18+
<log type="coverage-clover" target="build/logs/clover.xml"/>
19+
</logging>
1820
</phpunit>

0 commit comments

Comments
 (0)