forked from azuyalabs/yasumi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
116 lines (98 loc) · 3.78 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ This file is part of the Yasumi package.
~
~ Copyright (c) 2015 - 2016 AzuyaLabs
~
~ For the full copyright and license information, please view the LICENSE
~ file that was distributed with this source code.
~
~ @author Sacha Telgenhof <[email protected]>
-->
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
syntaxCheck="true"
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 Japan -->
<testsuite name="Japan">
<directory suffix="Test.php">./tests/Japan</directory>
</testsuite>
<!-- Test Suite for holidays in the Netherlands -->
<testsuite name="Netherlands">
<directory suffix="Test.php">./tests/Netherlands</directory>
</testsuite>
<!-- Test Suite for holidays in Belgium -->
<testsuite name="Belgium">
<directory suffix="Test.php">./tests/Belgium</directory>
</testsuite>
<!-- Test Suite for holidays in the USA -->
<testsuite name="USA">
<directory suffix="Test.php">./tests/USA</directory>
</testsuite>
<!-- Test Suite for holidays in Italy -->
<testsuite name="Italy">
<directory suffix="Test.php">./tests/Italy</directory>
</testsuite>
<!-- Test Suite for holidays in France -->
<testsuite name="France">
<directory suffix="Test.php">./tests/France</directory>
</testsuite>
<!-- Test Suite for holidays in Spain -->
<testsuite name="Spain">
<directory suffix="Test.php">./tests/Spain</directory>
</testsuite>
<!-- Test Suite for holidays in Denmark -->
<testsuite name="Denmark">
<directory suffix="Test.php">./tests/Denmark</directory>
</testsuite>
<!-- Test Suite for holidays in Norway -->
<testsuite name="Norway">
<directory suffix="Test.php">./tests/Norway</directory>
</testsuite>
<!-- Test Suite for holidays in Sweden -->
<testsuite name="Sweden">
<directory suffix="Test.php">./tests/Sweden</directory>
</testsuite>
<!-- Test Suite for holidays in Finland -->
<testsuite name="Finland">
<directory suffix="Test.php">./tests/Finland</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 New Zealand -->
<testsuite name="NewZealand">
<directory suffix="Test.php">./tests/NewZealand</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>