-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
100 lines (87 loc) · 2.82 KB
/
phpunit.xml
File metadata and controls
100 lines (87 loc) · 2.82 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
97
98
99
100
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
failOnRisky="false"
failOnWarning="false"
stopOnFailure="false"
cacheDirectory=".phpunit.cache">
<testsuites>
<!-- Complete Test Suite -->
<testsuite name="Complete">
<directory>tests</directory>
</testsuite>
<!-- Legacy Test Suites (maintained for compatibility) -->
<testsuite name="Express PHP Test Suite">
<directory>tests</directory>
</testsuite>
<!-- Core Framework Tests -->
<testsuite name="Core">
<directory>tests/Core</directory>
<directory>tests/Http</directory>
<directory>tests/Routing</directory>
<directory>tests/Services</directory>
</testsuite>
<!-- Performance Tests -->
<testsuite name="Performance">
<directory>tests/Performance</directory>
<directory>tests/Json</directory>
</testsuite>
<!-- Security Tests -->
<testsuite name="Security">
<directory>tests/Security</directory>
</testsuite>
<!-- Fast Tests (excluding stress tests) -->
<testsuite name="Fast">
<directory>tests</directory>
<exclude>tests/Stress</exclude>
</testsuite>
<!-- CI/CD Tests (excluding integration and stress tests for clean output) -->
<testsuite name="CI">
<directory>tests</directory>
<exclude>tests/Integration</exclude>
<exclude>tests/Stress</exclude>
</testsuite>
<!-- Integration Tests -->
<testsuite name="Integration">
<directory>tests/Integration</directory>
</testsuite>
<!-- Unit Tests Only -->
<testsuite name="Unit">
<directory>tests/Unit</directory>
<directory>tests/Core</directory>
<directory>tests/Http</directory>
<directory>tests/Routing</directory>
<directory>tests/Services</directory>
<directory>tests/Support</directory>
<directory>tests/Validation</directory>
</testsuite>
<!-- Stress Tests -->
<testsuite name="Stress">
<directory>tests/Stress</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>stress</group>
<group>slow</group>
</exclude>
</groups>
<logging>
<junit outputFile="reports/junit.xml"/>
<testdoxHtml outputFile="reports/testdox.html"/>
<testdoxText outputFile="reports/testdox.txt"/>
</logging>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory>vendor</directory>
<directory>test</directory>
<directory>examples</directory>
<directory>legacy</directory>
</exclude>
</source>
</phpunit>