-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathphpunit.xml
More file actions
87 lines (82 loc) · 2.88 KB
/
phpunit.xml
File metadata and controls
87 lines (82 loc) · 2.88 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
<?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/unit/bootstrap.php"
executionOrder="depends,defects"
beStrictAboutOutputDuringTests="true"
failOnRisky="true"
failOnWarning="true"
colors="true"
cacheDirectory=".phpunit.cache"
requireCoverageMetadata="false"
beStrictAboutCoverageMetadata="false">
<testsuites>
<!--
Each test file must appear in exactly one suite. PHPUnit 11 emits
deprecation warnings when a file matches multiple suites, so the
previous "Proclaim All Tests" catch-all was removed; the granular
suites below collectively cover every directory under tests/unit
and tests/integration. With no testsuite flag, PHPUnit runs all
declared suites, which is equivalent to the old "All" behavior.
-->
<!-- Unit suites: one per tests/unit subtree -->
<testsuite name="Admin Helper Tests">
<directory>tests/unit/Admin/Helper</directory>
</testsuite>
<testsuite name="Admin Lib Tests">
<directory>tests/unit/Admin/Lib</directory>
</testsuite>
<testsuite name="Admin Api Controller Tests">
<directory>tests/unit/Admin/Api/Controller</directory>
</testsuite>
<testsuite name="Admin Bible Tests">
<directory>tests/unit/Admin/Bible</directory>
</testsuite>
<testsuite name="Admin Controller Tests">
<directory>tests/unit/Admin/Controller</directory>
</testsuite>
<testsuite name="Admin Model Tests">
<directory>tests/unit/Admin/Model</directory>
</testsuite>
<testsuite name="Site Helper Tests">
<directory>tests/unit/Site/Helper</directory>
</testsuite>
<testsuite name="Site Controller Tests">
<directory>tests/unit/Site/Controller</directory>
</testsuite>
<testsuite name="Site Model Tests">
<directory>tests/unit/Site/Model</directory>
</testsuite>
<testsuite name="Site Bible Tests">
<directory>tests/unit/Site/Bible</directory>
</testsuite>
<!-- Integration suites: one per tests/integration subtree -->
<testsuite name="Integration Admin Helper Tests">
<directory>tests/integration/Admin/Helper</directory>
</testsuite>
<testsuite name="Integration Admin Lib Tests">
<directory>tests/integration/Admin/Lib</directory>
</testsuite>
<testsuite name="Integration Admin Api Tests">
<directory>tests/integration/Admin/Api</directory>
</testsuite>
<testsuite name="Integration Admin Table Tests">
<directory>tests/integration/Admin/Table</directory>
</testsuite>
</testsuites>
<php>
<const name="JPATH_BASE" value="."/>
<const name="JPATH_ROOT" value="."/>
</php>
<source>
<include>
<directory>admin/src</directory>
<directory>site/src</directory>
</include>
<exclude>
<directory>admin/src/View</directory>
<directory>site/src/View</directory>
<directory>admin/src/Field</directory>
</exclude>
</source>
</phpunit>