forked from SonsOfPHP/sonsofphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
128 lines (104 loc) · 4.23 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
128 lines (104 loc) · 4.23 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
cacheDirectory=".phpunit.cache"
requireCoverageMetadata="true"
beStrictAboutCoverageMetadata="true">
<testsuites>
<testsuite name="all">
<!--<directory>src/SonsOfPHP/Bard/src/Tests</directory>-->
<directory>src/SonsOfPHP/Bridge/*/*/Tests</directory>
<directory>src/SonsOfPHP/Bridge/*/*/*/Tests</directory>
<directory>src/SonsOfPHP/Bundle/*/Tests</directory>
<directory>src/SonsOfPHP/Component/*/Tests</directory>
</testsuite>
<testsuite name="bard">
<!--<directory>src/SonsOfPHP/Bard/src/Tests</directory>-->
</testsuite>
<testsuite name="cache">
<directory>src/SonsOfPHP/Component/Clock/Tests</directory>
</testsuite>
<testsuite name="clock">
<directory>src/SonsOfPHP/Component/Clock/Tests</directory>
</testsuite>
<testsuite name="container">
<directory>src/SonsOfPHP/Component/Container/Tests</directory>
</testsuite>
<testsuite name="cookie">
<directory>src/SonsOfPHP/Component/Cookie/Tests</directory>
</testsuite>
<testsuite name="cqrs">
<directory>src/SonsOfPHP/Bridge/*/Cqrs/Tests</directory>
<!--<directory>src/SonsOfPHP/Component/Cqrs/Tests</directory>-->
</testsuite>
<testsuite name="event-dispatcher">
<directory>src/SonsOfPHP/Component/EventDispatcher/Tests</directory>
</testsuite>
<testsuite name="event-sourcing">
<directory>src/SonsOfPHP/Bridge/*/EventSourcing/Tests</directory>
<directory>src/SonsOfPHP/Component/EventSourcing/Tests</directory>
</testsuite>
<testsuite name="feature-toggle">
<directory>src/SonsOfPHP/Component/FeatureToggle/Tests</directory>
</testsuite>
<testsuite name="filesystem">
<directory>src/SonsOfPHP/Component/Filesystem/Tests</directory>
</testsuite>
<testsuite name="http-factory">
<directory>src/SonsOfPHP/Component/HttpFactory/Tests</directory>
</testsuite>
<testsuite name="http-handler">
<directory>src/SonsOfPHP/Component/HttpHandler/Tests</directory>
</testsuite>
<testsuite name="http-message">
<directory>src/SonsOfPHP/Component/HttpMessage/Tests</directory>
</testsuite>
<testsuite name="json">
<directory>src/SonsOfPHP/Component/Json/Tests</directory>
</testsuite>
<testsuite name="link">
<directory>src/SonsOfPHP/Component/Link/Tests</directory>
</testsuite>
<testsuite name="logger">
<directory>src/SonsOfPHP/Component/Logger/Tests</directory>
</testsuite>
<testsuite name="mailer">
<directory>src/SonsOfPHP/Component/Mailer/Tests</directory>
</testsuite>
<testsuite name="money">
<directory>src/SonsOfPHP/Bridge/*/Money/Tests</directory>
<directory>src/SonsOfPHP/Component/Money/Tests</directory>
</testsuite>
<testsuite name="pager">
<directory>src/SonsOfPHP/Bridge/*/*/Pager/Tests</directory>
<directory>src/SonsOfPHP/Component/Pager/Tests</directory>
</testsuite>
<testsuite name="version">
<directory>src/SonsOfPHP/Component/Version/Tests</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true" pathCoverage="false" ignoreDeprecatedCodeUnits="true" disableCodeCoverageIgnore="true">
</coverage>
<source>
<include>
<directory>src/*</directory>
</include>
<exclude>
<!--<directory>src/SonsOfPHP/Bard/src/Tests</directory>-->
<directory>src/SonsOfPHP/Bard/vendor</directory>
<directory>src/SonsOfPHP/Bridge/*/*/*/Tests</directory>
<directory>src/SonsOfPHP/Bridge/*/*/*/vendor</directory>
<directory>src/SonsOfPHP/Bridge/*/*/Tests</directory>
<directory>src/SonsOfPHP/Bridge/*/*/vendor</directory>
<directory>src/SonsOfPHP/Bundle/*/Tests</directory>
<directory>src/SonsOfPHP/Bundle/*/vendor</directory>
<directory>src/SonsOfPHP/Component/*/Tests</directory>
<directory>src/SonsOfPHP/Component/*/vendor</directory>
<directory>src/SonsOfPHP/Contract/*/vendor</directory>
</exclude>
</source>
</phpunit>