Skip to content

Commit eb6db47

Browse files
committed
add phpunit config
1 parent 917dd00 commit eb6db47

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

phpunit.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?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+
>
13+
<testsuites>
14+
<testsuite name="ReactPHP Memcached Cache Test Suite">
15+
<directory suffix=".php">./tests/</directory>
16+
</testsuite>
17+
</testsuites>
18+
<filter>
19+
<whitelist>
20+
<directory suffix=".php">./src/</directory>
21+
</whitelist>
22+
</filter>
23+
<logging>
24+
<log type="coverage-clover" target="./build/logs/clover.xml"/>
25+
<log type="coverage-html" target="./build/logs/report" charset="UTF-8"
26+
yui="true" highlight="true"
27+
lowUpperBound="50" highLowerBound="80"/>
28+
</logging>
29+
</phpunit>

0 commit comments

Comments
 (0)