Skip to content

Commit 086b78e

Browse files
committed
test: add phpunit.xml
1 parent 2f0043e commit 086b78e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

phpunit.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit backupGlobals="false"
3+
cacheDirectory=".phpunit.cache"
4+
colors="true"
5+
processIsolation="false"
6+
stopOnFailure="false">
7+
8+
<testsuites>
9+
<testsuite name="Boatrace Open API">
10+
<directory suffix="Test.php">tests/</directory>
11+
</testsuite>
12+
</testsuites>
13+
14+
<source>
15+
<include>
16+
<directory>src/</directory>
17+
</include>
18+
</source>
19+
20+
<coverage>
21+
<report>
22+
<clover outputFile="build/coverage-xml/coverage.xml"/>
23+
</report>
24+
</coverage>
25+
</phpunit>

0 commit comments

Comments
 (0)