Skip to content

Commit c337562

Browse files
author
Greg Bowler
committed
Add phpunit configuration
1 parent 48f88cb commit c337562

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

test/phpunit/phpunit.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0"?>
2+
<phpunit colors="true">
3+
<testsuites>
4+
<testsuite name="main">
5+
<directory suffix="Test.php">.</directory>
6+
</testsuite>
7+
</testsuites>
8+
9+
<logging>
10+
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true" />
11+
<log type="coverage-html" target="./_coverage" lowUpperBound="35" highLowerBound="70" />
12+
</logging>
13+
14+
<filter>
15+
<whitelist>
16+
<directory suffix=".php">../../src</directory>
17+
</whitelist>
18+
</filter>
19+
</phpunit>

0 commit comments

Comments
 (0)