-
Notifications
You must be signed in to change notification settings - Fork 15
/
phpunit.coverage.path.xml
48 lines (48 loc) · 1.73 KB
/
phpunit.coverage.path.xml
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
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
bootstrap="tests/bootstrap.php"
executionOrder="random"
beStrictAboutOutputDuringTests="true"
failOnRisky="true"
failOnWarning="true"
colors="true"
cacheDirectory=".tools/.phpunit.cache"
beStrictAboutCoverageMetadata="false"
>
<testsuites>
<testsuite name="Spinner/Complex">
<directory>tests/Spinner/Complex</directory>
</testsuite>
<testsuite name="Spinner/Functional">
<directory>tests/Spinner/Functional</directory>
</testsuite>
<testsuite name="Spinner/Unit">
<directory>tests/Spinner/Unit</directory>
</testsuite>
<testsuite name="Lib/Functional">
<directory>tests/Lib/Functional</directory>
</testsuite>
<testsuite name="Lib/Unit">
<directory>tests/Lib/Unit</directory>
</testsuite>
<testsuite name="Benchmark/Functional">
<directory>tests/Benchmark/Functional</directory>
</testsuite>
<testsuite name="Benchmark/Unit">
<directory>tests/Benchmark/Unit</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<text outputFile=".tools/.report/.build/coverage.path.txt" showOnlySummary="true"/>
<html outputDirectory=".tools/.report/.build/coverage/path"/>
</report>
</coverage>
<source>
<include>
<directory suffix=".php">lib</directory>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>