Skip to content

Commit 137f837

Browse files
authored
Create phpunit.xml.dist
1 parent 04fb83d commit 137f837

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

phpunit.xml.dist

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
executionOrder="random"
7+
failOnWarning="true"
8+
failOnRisky="true"
9+
failOnEmptyTestSuite="true"
10+
beStrictAboutOutputDuringTests="true"
11+
cacheDirectory=".phpunit.cache">
12+
<testsuites>
13+
<testsuite name="Duration Test Suite">
14+
<directory>tests</directory>
15+
</testsuite>
16+
</testsuites>
17+
<coverage>
18+
<include>
19+
<directory suffix=".php">src</directory>
20+
</include>
21+
<report>
22+
<html outputDirectory="build/coverage"/>
23+
<text outputFile="build/coverage.txt"/>
24+
<clover outputFile="build/logs/clover.xml"/>
25+
</report>
26+
</coverage>
27+
<logging>
28+
<junit outputFile="build/report.junit.xml"/>
29+
</logging>
30+
</phpunit>

0 commit comments

Comments
 (0)