forked from azuyalabs/yasumi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
185 lines (185 loc) · 7.13 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
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ This file is part of the Yasumi package.
~
~ Copyright (c) 2015 - 2021 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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
beStrictAboutTestsThatDoNotTestAnything="false" bootstrap="vendor/autoload.php" colors="true"
verbose="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src/Yasumi</directory>
</include>
<exclude>
<directory suffix=".php">./src/Yasumi/data</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="Yasumi Test Suite">
<directory>./tests</directory>
</testsuite>
<!-- Test Suite base functionality of Yasumi -->
<testsuite name="Base">
<directory>./tests/Base</directory>
</testsuite>
<!-- Test Suite for holidays in Australia -->
<testsuite name="Australia">
<directory>./tests/Australia</directory>
</testsuite>
<!-- Test Suite for holidays in Austria -->
<testsuite name="Austria">
<directory>./tests/Austria</directory>
</testsuite>
<!-- Test Suite for holidays in Belgium -->
<testsuite name="Belgium">
<directory>./tests/Belgium</directory>
</testsuite>
<!-- Test Suite for holidays in Bosnia & Herzegovina -->
<testsuite name="Bosnia">
<directory>./tests/Bosnia</directory>
</testsuite>
<!-- Test Suite for holidays in Brazil -->
<testsuite name="Brazil">
<directory>./tests/Brazil</directory>
</testsuite>
<!-- Test Suite for holidays in Canada -->
<testsuite name="Canada">
<directory>./tests/Canada</directory>
</testsuite>
<!-- Test Suite for holidays in Croatia -->
<testsuite name="Croatia">
<directory>./tests/Croatia</directory>
</testsuite>
<!-- Test Suite for holidays in Czechia -->
<testsuite name="CzechRepublic">
<directory>./tests/CzechRepublic</directory>
</testsuite>
<!-- Test Suite for holidays in Denmark -->
<testsuite name="Denmark">
<directory>./tests/Denmark</directory>
</testsuite>
<!-- Test Suite for holidays in Estonia -->
<testsuite name="Estonia">
<directory>./tests/Estonia</directory>
</testsuite>
<!-- Test Suite for holidays in Finland -->
<testsuite name="Finland">
<directory>./tests/Finland</directory>
</testsuite>
<!-- Test Suite for holidays in France -->
<testsuite name="France">
<directory>./tests/France</directory>
</testsuite>
<!-- Test Suite for holidays in Germany -->
<testsuite name="Germany">
<directory>./tests/Germany</directory>
</testsuite>
<!-- Test Suite for holidays in Greece -->
<testsuite name="Greece">
<directory>./tests/Greece</directory>
</testsuite>
<!-- Test Suite for holidays in Hungary -->
<testsuite name="Hungary">
<directory>./tests/Hungary</directory>
</testsuite>
<!-- Test Suite for holidays in Ireland -->
<testsuite name="Ireland">
<directory>./tests/Ireland</directory>
</testsuite>
<!-- Test Suite for holidays in Italy -->
<testsuite name="Italy">
<directory>./tests/Italy</directory>
</testsuite>
<!-- Test Suite for holidays in Japan -->
<testsuite name="Japan">
<directory>./tests/Japan</directory>
</testsuite>
<!-- Test Suite for holidays in Latvia -->
<testsuite name="Latvia">
<directory>./tests/Latvia</directory>
</testsuite>
<!-- Test Suite for holidays in Lithuania -->
<testsuite name="Lithuania">
<directory>./tests/Lithuania</directory>
</testsuite>
<!-- Test Suite for holidays in Luxembourg -->
<testsuite name="Luxembourg">
<directory>./tests/Luxembourg</directory>
</testsuite>
<!-- Test Suite for holidays in Netherlands -->
<testsuite name="Netherlands">
<directory>./tests/Netherlands</directory>
</testsuite>
<!-- Test Suite for holidays in New Zealand -->
<testsuite name="NewZealand">
<directory>./tests/NewZealand</directory>
</testsuite>
<!-- Test Suite for holidays in Norway -->
<testsuite name="Norway">
<directory>./tests/Norway</directory>
</testsuite>
<!-- Test Suite for holidays in Poland -->
<testsuite name="Poland">
<directory>./tests/Poland</directory>
</testsuite>
<!-- Test Suite for holidays in Portugal -->
<testsuite name="Portugal">
<directory>./tests/Portugal</directory>
</testsuite>
<!-- Test Suite for holidays in Romania -->
<testsuite name="Romania">
<directory>./tests/Romania</directory>
</testsuite>
<!-- Test Suite for holidays in Russia -->
<testsuite name="Russia">
<directory>./tests/Russia</directory>
</testsuite>
<!-- Test Suite for holidays in Slovakia -->
<testsuite name="Slovakia">
<directory>./tests/Slovakia</directory>
</testsuite>
<!-- Test Suite for holidays in South Africa -->
<testsuite name="SouthAfrica">
<directory>./tests/SouthAfrica</directory>
</testsuite>
<!-- Test Suite for holidays in South Korea -->
<testsuite name="SouthKorea">
<directory>./tests/SouthKorea</directory>
</testsuite>
<!-- Test Suite for holidays in Spain -->
<testsuite name="Spain">
<directory>./tests/Spain</directory>
</testsuite>
<!-- Test Suite for holidays in Sweden -->
<testsuite name="Sweden">
<directory>./tests/Sweden</directory>
</testsuite>
<!-- Test Suite for holidays in Switzerland -->
<testsuite name="Switzerland">
<directory>./tests/Switzerland</directory>
</testsuite>
<!-- Test Suite for holidays in Turkey -->
<testsuite name="Turkey">
<directory>./tests/Turkey</directory>
</testsuite>
<!-- Test Suite for holidays in United States -->
<testsuite name="USA">
<directory>./tests/USA</directory>
</testsuite>
<!-- Test Suite for holidays in Ukraine -->
<testsuite name="Ukraine">
<directory>./tests/Ukraine</directory>
</testsuite>
<!-- Test Suite for holidays in United Kingdom -->
<testsuite name="UnitedKingdom">
<directory>./tests/UnitedKingdom</directory>
</testsuite>
</testsuites>
</phpunit>