-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
41 lines (41 loc) · 1.57 KB
/
phpunit.xml.dist
File metadata and controls
41 lines (41 loc) · 1.57 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
<?xml version="1.0"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="core">
<file>tests/test-scoring.php</file>
<file>tests/test-scanner.php</file>
<file>tests/test-file-generator.php</file>
<file>tests/test-virtual-routes.php</file>
<file>tests/test-meta-tags.php</file>
<file>tests/test-rest-enhancer.php</file>
<file>tests/test-openapi-generator.php</file>
<file>tests/test-robots-filter.php</file>
<file>tests/test-site-health.php</file>
</testsuite>
<testsuite name="indexable">
<file>tests/test-scanner-l4.php</file>
<file>tests/test-scanner-per-page.php</file>
</testsuite>
<testsuite name="agent-native">
<file>tests/test-agent-db.php</file>
<file>tests/test-agent-infrastructure.php</file>
<file>tests/test-intent-endpoints.php</file>
<file>tests/test-sessions.php</file>
<file>tests/test-scoped-tokens.php</file>
<file>tests/test-audit-logs.php</file>
<file>tests/test-sandbox.php</file>
<file>tests/test-tool-schemas.php</file>
<file>tests/test-self-report.php</file>
</testsuite>
<testsuite name="parity">
<file>./tests/test-parity.php</file>
</testsuite>
</testsuites>
</phpunit>