-
Notifications
You must be signed in to change notification settings - Fork 39
/
phpunit.xml
81 lines (66 loc) · 2.66 KB
/
phpunit.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
forceCoversAnnotation="false"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
verbose="true"
colors="true"
>
<coverage>
<include>
<directory suffix=".php">src/</directory>
</include>
</coverage>
<testsuites>
<testsuite name="fullspec">
<directory suffix=".spec.php">tests/</directory>
</testsuite>
<testsuite name="unit">
<directory suffix=".spec.php">tests/unit/</directory>
</testsuite>
<testsuite name="integration">
<directory suffix=".spec.php">tests/integration/</directory>
</testsuite>
<testsuite name="area">
<directory suffix=".spec.php">tests/integration/Unit/Area/</directory>
</testsuite>
<testsuite name="storage">
<directory suffix=".spec.php">tests/integration/Unit/DigitalStorage/</directory>
</testsuite>
<testsuite name="energy">
<directory suffix=".spec.php">tests/integration/Unit/Energy/</directory>
</testsuite>
<testsuite name="frequency">
<directory suffix=".spec.php">tests/integration/Unit/Frequency/</directory>
</testsuite>
<testsuite name="length">
<directory suffix=".spec.php">tests/integration/Unit/Length/</directory>
</testsuite>
<testsuite name="mass">
<directory suffix=".spec.php">tests/integration/Unit/Mass/</directory>
</testsuite>
<testsuite name="planeangle">
<directory suffix=".spec.php">tests/integration/Unit/PlaneAngle/</directory>
</testsuite>
<testsuite name="pressure">
<directory suffix=".spec.php">tests/integration/Unit/Pressure/</directory>
</testsuite>
<testsuite name="speed">
<directory suffix=".spec.php">tests/integration/Unit/Speed/</directory>
</testsuite>
<testsuite name="temperature">
<directory suffix=".spec.php">tests/integration/Unit/Temperature/</directory>
</testsuite>
<testsuite name="time">
<directory suffix=".spec.php">tests/integration/Unit/Time/</directory>
</testsuite>
<testsuite name="volume">
<directory suffix=".spec.php">tests/integration/Unit/FuelEconomy/</directory>
<directory suffix=".spec.php">tests/integration/Unit/Volume/</directory>
</testsuite>
</testsuites>
</phpunit>