forked from azuyalabs/yasumi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
216 lines (178 loc) · 7.96 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ This file is part of the Yasumi package.
~
~ Copyright (c) 2015 - 2019 AzuyaLabs
~
~ For the full copyright and license information, please view the LICENSE
~ file that was distributed with this source code.
~
~ @author Sacha Telgenhof <me@sachatelgenhof.com>
-->
<phpunit backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
verbose="true"
>
<testsuites>
<testsuite name="Yasumi Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
<!-- Test Suite base functionality of Yasumi -->
<testsuite name="Base">
<directory suffix="Test.php">./tests/Base</directory>
</testsuite>
<!-- Test Suite for holidays in Australia -->
<testsuite name="Australia">
<directory suffix="Test.php">./tests/Australia</directory>
</testsuite>
<!-- Test Suite for holidays in Austria -->
<testsuite name="Austria">
<directory suffix="Test.php">./tests/Austria</directory>
</testsuite>
<!-- Test Suite for holidays in Belgium -->
<testsuite name="Belgium">
<directory suffix="Test.php">./tests/Belgium</directory>
</testsuite>
<!-- Test Suite for holidays in Bosnia & Herzegovina -->
<testsuite name="Bosnia">
<directory suffix="Test.php">./tests/Bosnia</directory>
</testsuite>
<!-- Test Suite for holidays in Brazil -->
<testsuite name="Brazil">
<directory suffix="Test.php">./tests/Brazil</directory>
</testsuite>
<!-- Test Suite for holidays in Croatia -->
<testsuite name="Croatia">
<directory suffix="Test.php">./tests/Croatia</directory>
</testsuite>
<!-- Test Suite for holidays in Czechia -->
<testsuite name="CzechRepublic">
<directory suffix="Test.php">./tests/CzechRepublic</directory>
</testsuite>
<!-- Test Suite for holidays in Denmark -->
<testsuite name="Denmark">
<directory suffix="Test.php">./tests/Denmark</directory>
</testsuite>
<!-- Test Suite for holidays in Estonia -->
<testsuite name="Estonia">
<directory suffix="Test.php">./tests/Estonia</directory>
</testsuite>
<!-- Test Suite for holidays in Finland -->
<testsuite name="Finland">
<directory suffix="Test.php">./tests/Finland</directory>
</testsuite>
<!-- Test Suite for holidays in France -->
<testsuite name="France">
<directory suffix="Test.php">./tests/France</directory>
</testsuite>
<!-- Test Suite for holidays in Germany -->
<testsuite name="Germany">
<directory suffix="Test.php">./tests/Germany</directory>
</testsuite>
<!-- Test Suite for holidays in Greece -->
<testsuite name="Greece">
<directory suffix="Test.php">./tests/Greece</directory>
</testsuite>
<!-- Test Suite for holidays in Hungary -->
<testsuite name="Hungary">
<directory suffix="Test.php">./tests/Hungary</directory>
</testsuite>
<!-- Test Suite for holidays in Ireland -->
<testsuite name="Ireland">
<directory suffix="Test.php">./tests/Ireland</directory>
</testsuite>
<!-- Test Suite for holidays in Italy -->
<testsuite name="Italy">
<directory suffix="Test.php">./tests/Italy</directory>
</testsuite>
<!-- Test Suite for holidays in Japan -->
<testsuite name="Japan">
<directory suffix="Test.php">./tests/Japan</directory>
</testsuite>
<!-- Test Suite for holidays in Latvia -->
<testsuite name="Latvia">
<directory suffix="Test.php">./tests/Latvia</directory>
</testsuite>
<!-- Test Suite for holidays in Lithuania -->
<testsuite name="Lithuania">
<directory suffix="Test.php">./tests/Lithuania</directory>
</testsuite>
<!-- Test Suite for holidays in Netherlands -->
<testsuite name="Netherlands">
<directory suffix="Test.php">./tests/Netherlands</directory>
</testsuite>
<!-- Test Suite for holidays in New Zealand -->
<testsuite name="NewZealand">
<directory suffix="Test.php">./tests/NewZealand</directory>
</testsuite>
<!-- Test Suite for holidays in Norway -->
<testsuite name="Norway">
<directory suffix="Test.php">./tests/Norway</directory>
</testsuite>
<!-- Test Suite for holidays in Poland -->
<testsuite name="Poland">
<directory suffix="Test.php">./tests/Poland</directory>
</testsuite>
<!-- Test Suite for holidays in Portugal -->
<testsuite name="Portugal">
<directory suffix="Test.php">./tests/Portugal</directory>
</testsuite>
<!-- Test Suite for holidays in Romania -->
<testsuite name="Romania">
<directory suffix="Test.php">./tests/Romania</directory>
</testsuite>
<!-- Test Suite for holidays in Russia -->
<testsuite name="Russia">
<directory suffix="Test.php">./tests/Russia</directory>
</testsuite>
<!-- Test Suite for holidays in Slovakia -->
<testsuite name="Slovakia">
<directory suffix="Test.php">./tests/Slovakia</directory>
</testsuite>
<!-- Test Suite for holidays in South Africa -->
<testsuite name="SouthAfrica">
<directory suffix="Test.php">./tests/SouthAfrica</directory>
</testsuite>
<!-- Test Suite for holidays in Spain -->
<testsuite name="Spain">
<directory suffix="Test.php">./tests/Spain</directory>
</testsuite>
<!-- Test Suite for holidays in Sweden -->
<testsuite name="Sweden">
<directory suffix="Test.php">./tests/Sweden</directory>
</testsuite>
<!-- Test Suite for holidays in Switzerland -->
<testsuite name="Switzerland">
<directory suffix="Test.php">./tests/Switzerland</directory>
</testsuite>
<!-- Test Suite for holidays in United States -->
<testsuite name="USA">
<directory suffix="Test.php">./tests/USA</directory>
</testsuite>
<!-- Test Suite for holidays in Ukraine -->
<testsuite name="Ukraine">
<directory suffix="Test.php">./tests/Ukraine</directory>
</testsuite>
<!-- Test Suite for holidays in United Kingdom -->
<testsuite name="UnitedKingdom">
<directory suffix="Test.php">./tests/UnitedKingdom</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src/Yasumi</directory>
<exclude>
<directory suffix=".php">./src/Yasumi/data</directory>
</exclude>
</whitelist>
</filter>
</phpunit>