-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
96 lines (96 loc) · 3.69 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
96 lines (96 loc) · 3.69 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="static">
<directory>tests/Static</directory>
</testsuite>
<testsuite name="static-syntax">
<directory>tests/Static/Syntax</directory>
</testsuite>
<testsuite name="static-xml">
<directory>tests/Static/Xml</directory>
</testsuite>
<testsuite name="static-xml-admin">
<directory>tests/Static/Xml/Admin</directory>
</testsuite>
<testsuite name="static-xml-site">
<directory>tests/Static/Xml/Site</directory>
</testsuite>
<testsuite name="static-xml-shared">
<directory>tests/Static/Xml/Shared</directory>
</testsuite>
<testsuite name="static-language">
<directory>tests/Static/Language</directory>
</testsuite>
<testsuite name="static-code">
<directory>tests/Static/Code</directory>
</testsuite>
<testsuite name="static-code-admin">
<directory>tests/Static/Code/Admin</directory>
</testsuite>
<testsuite name="static-code-site">
<directory>tests/Static/Code/Site</directory>
</testsuite>
<testsuite name="static-code-shared">
<directory>tests/Static/Code/Shared</directory>
</testsuite>
<testsuite name="static-views">
<directory>tests/Static/Views</directory>
</testsuite>
<testsuite name="static-views-admin">
<directory>tests/Static/Views/Admin</directory>
</testsuite>
<testsuite name="static-views-site">
<directory>tests/Static/Views/Site</directory>
</testsuite>
<testsuite name="static-views-shared">
<directory>tests/Static/Views/Shared</directory>
</testsuite>
<testsuite name="static-assets">
<directory>tests/Static/Assets</directory>
</testsuite>
<testsuite name="static-security">
<directory>tests/Static/Security</directory>
</testsuite>
<testsuite name="static-integrity">
<directory>tests/Static/Integrity</directory>
</testsuite>
<testsuite name="static-sql">
<directory>tests/Static/Sql</directory>
</testsuite>
<testsuite name="static-sampledata">
<directory>tests/Static/SampleData</directory>
</testsuite>
<testsuite name="static-package">
<directory>tests/Static/Package</directory>
</testsuite>
<testsuite name="joomla">
<directory>tests/Joomla</directory>
</testsuite>
<testsuite name="joomla-bootstrap">
<directory>tests/Joomla/Bootstrap</directory>
</testsuite>
<testsuite name="joomla-schema">
<directory>tests/Joomla/Schema</directory>
</testsuite>
<testsuite name="joomla-config">
<directory>tests/Joomla/Config</directory>
</testsuite>
<testsuite name="joomla-models">
<directory>tests/Joomla/Models</directory>
</testsuite>
<testsuite name="joomla-environment">
<directory>tests/Joomla/Environment</directory>
</testsuite>
<testsuite name="unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="unit-helpers">
<directory>tests/Unit/Helpers</directory>
</testsuite>
</testsuites>
</phpunit>