-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml.dist
40 lines (40 loc) · 1.22 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true"
bootstrap="vendor/autoload.php"
cacheDirectory=".cache/phpunit"
colors="true"
executionOrder="depends,defects"
failOnRisky="true"
failOnWarning="true"
failOnEmptyTestSuite="true"
failOnIncomplete="true"
failOnSkipped="true"
requireCoverageMetadata="true"
testdox="true"
>
<testsuites>
<testsuite name="Option Test Suite">
<directory>tests/Unit</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
<report>
<html outputDirectory=".cache/phpunit/coverage-html"/>
<clover outputFile=".cache/phpunit/clover.xml"/>
<text outputFile=".cache/phpunit/coverage.txt"/>
</report>
</coverage>
<logging>
<junit outputFile=".cache/phpunit/report.junit.xml"/>
</logging>
</phpunit>