This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml.dist
171 lines (167 loc) · 8.53 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
cacheResult="true"
bootstrap="./phpunit.php"
colors="true"
verbose="true"
failOnRisky="true"
failOnWarning="true"
backupGlobals="true"
columns="max"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
resolveDependencies="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutResourceUsageDuringSmallTests="false"
>
<php>
<ini name="error_reporting" value="-1" />
<ini name="intl.default_locale" value="en" />
<ini name="intl.error_level" value="0" />
<ini name="memory_limit" value="-1" />
</php>
<testsuites>
<testsuite name="Narrowspark Dotenv Bridge Test Suite">
<directory>./src/Viserio/Bridge/Dotenv/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Monolog Bridge Test Suite">
<directory>./src/Viserio/Bridge/Monolog/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Phpstan Bridge Test Suite">
<directory>./src/Viserio/Bridge/Phpstan/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Twig Bridge Test Suite">
<directory>./src/Viserio/Bridge/Twig/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Debug Provider Test Suite">
<directory>./src/Viserio/Provider/Debug/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Framework Provider Test Suite">
<directory>./src/Viserio/Provider/Framework/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Twig Provider Test Suite">
<directory>./src/Viserio/Provider/Twig/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Bus Component Test Suite">
<directory>./src/Viserio/Component/Bus/Tests</directory>
</testsuite>
<!-- <testsuite name="Narrowspark Cache Component Test Suite">-->
<!-- <directory>./src/Viserio/Component/Cache/Tests</directory>-->
<!-- </testsuite>-->
<testsuite name="Narrowspark Config Component Test Suite">
<directory>./src/Viserio/Component/Config/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Console Component Test Suite">
<directory>./src/Viserio/Component/Console/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Container Component Test Suite">
<directory>./src/Viserio/Component/Container/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Contract Component Test Suite">
<directory>./src/Viserio/Contract/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Cookie Component Test Suite">
<directory>./src/Viserio/Component/Cookie/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Cron Component Test Suite">
<directory>./src/Viserio/Component/Cron/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Events Component Test Suite">
<directory>./src/Viserio/Component/Events/Tests</directory>
</testsuite>
<!-- <testsuite name="Narrowspark Exception Component Test Suite">-->
<!-- <directory>./src/Viserio/Component/Exception/Tests</directory>-->
<!-- </testsuite>-->
<testsuite name="Narrowspark Filesystem Component Test Suite">
<directory>./src/Viserio/Component/Filesystem/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Finder Component Test Suite">
<directory>./src/Viserio/Component/Finder/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Foundation Component Test Suite">
<directory>./src/Viserio/Component/Foundation/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Http Component Test Suite">
<directory>./src/Viserio/Component/Http/Tests</directory>
</testsuite>
<testsuite name="Narrowspark HttpFactory Component Test Suite">
<directory>./src/Viserio/Component/HttpFactory/Tests</directory>
</testsuite>
<testsuite name="Narrowspark HttpFoundation Component Test Suite">
<directory>./src/Viserio/Component/HttpFoundation/Tests</directory>
</testsuite>
<!-- <testsuite name="Narrowspark Log Component Test Suite">-->
<!-- <directory>./src/Viserio/Component/Log/Tests</directory>-->
<!-- </testsuite>-->
<!-- <testsuite name="Narrowspark Mail Component Test Suite">-->
<!-- <directory>./src/Viserio/Component/Mail/Tests</directory>-->
<!-- </testsuite>-->
<!-- <testsuite name="Narrowspark Manager Component Test Suite">-->
<!-- <directory>./src/Viserio/Component/Manager/Tests</directory>-->
<!-- </testsuite>-->
<testsuite name="Narrowspark Pagination Component Test Suite">
<directory>./src/Viserio/Component/Pagination/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Parser Component Test Suite">
<directory>./src/Viserio/Component/Parser/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Filesystem Path Component Test Suite">
<directory>./src/Viserio/Component/Path/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Pipeline Component Test Suite">
<directory>./src/Viserio/Component/Pipeline/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Profiler Component Test Suite">
<directory>./src/Viserio/Component/Profiler/Tests</directory>
</testsuite>
<!--<testsuite name="Narrowspark Queue Component Test Suite">-->
<!--<directory>./src/Viserio/Component/Queue/Tests</directory>-->
<!--</testsuite>-->
<testsuite name="Narrowspark Routing Component Test Suite">
<directory>./src/Viserio/Component/Routing/Tests</directory>
</testsuite>
<!-- <testsuite name="Narrowspark Session Component Test Suite">-->
<!-- <directory>./src/Viserio/Component/Session/Tests</directory>-->
<!-- </testsuite>-->
<testsuite name="Narrowspark Support Component Test Suite">
<directory>./src/Viserio/Component/Support/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Translation Component Test Suite">
<directory>./src/Viserio/Component/Translation/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Validation Component Test Suite">
<directory>./src/Viserio/Component/Validation/Tests</directory>
</testsuite>
<testsuite name="Narrowspark View Component Test Suite">
<directory>./src/Viserio/Component/View/Tests</directory>
</testsuite>
<testsuite name="Narrowspark WebServer Component Test Suite">
<directory>./src/Viserio/Component/WebServer/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Contract Test Suite">
<directory>./src/Viserio/Contract/Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src/Viserio/</directory>
<exclude>
<directory>./benchmarks</directory>
<directory>./src/Viserio/Bridge/*/Tests</directory>
<directory>./src/Viserio/Component/*/Tests</directory>
<directory>./src/Viserio/Contract/*/Tests</directory>
<directory>./src/Viserio/Provider/*/Tests</directory>
<file>./src/Viserio/Component/WebServer/Resources/router.php</file>
<file>./src/Viserio/Component/Cookie/phpunit.php</file>
<file>./src/Viserio/Component/Cron/phpunit.php</file>
<file>./src/Viserio/Component/HttpFoundation/phpunit.php</file>
<file>./src/Viserio/Component/Session/phpunit.php</file>
<file>./src/Viserio/Component/WebServer/Tests/OverwritePhpFunctions.php</file>
<file>./src/Viserio/Component/Foundation/Tests/OverwritePhpFunctions.php</file>
<file>./src/Viserio/Component/Container/Tests/Fixture/Autowire/OptionalClass.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>