Skip to content

Commit a80351a

Browse files
committed
add phpunit.xml
1 parent a5fcd02 commit a80351a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

phpunit.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<phpunit
2+
backupGlobals="false"
3+
colors="true"
4+
convertErrorsToExceptions="true"
5+
convertNoticesToExceptions="true"
6+
convertWarningsToExceptions="true"
7+
>
8+
<testsuites>
9+
<testsuite name="unit" suffix=".php">
10+
<directory>./tests</directory>
11+
</testsuite>
12+
</testsuites>
13+
<filter>
14+
<whitelist processUncoveredFilesFromWhitelist="true">
15+
<directory suffix=".php">./src</directory>
16+
<directory suffix=".php">./tests</directory>
17+
<directory suffix=".php">./examples</directory>
18+
</whitelist>
19+
</filter>
20+
<log type="coverage-clover" target="build/logs/clover.xml"/>
21+
</phpunit>

0 commit comments

Comments
 (0)