This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
phpunit.xml.dist
68 lines (52 loc) · 1.65 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
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="false"
columns="50"
>
<php>
<const name="WP_TESTS_MULTISITE" value="1" />
</php>
<testsuites>
<testsuite name="All">
<directory prefix="test-" suffix=".php">./tests/</directory>
</testsuite>
<testsuite name="Database">
<directory prefix="test-db" suffix=".php">./tests/</directory>
</testsuite>
<testsuite name="Multisite">
<directory prefix="test-multisite" suffix=".php">./tests/</directory>
</testsuite>
<testsuite name="Integration">
<directory prefix="test-integration" suffix=".php">./tests/</directory>
</testsuite>
<testsuite name="API">
<directory prefix="test-api" suffix=".php">./tests/</directory>
</testsuite>
<testsuite name="Syncing">
<directory prefix="test-syncing" suffix=".php">./tests/</directory>
</testsuite>
<testsuite name="Utils">
<directory prefix="test-utils" suffix=".php">./tests/</directory>
</testsuite>
<testsuite name="CPT">
<directory prefix="test-cpt" suffix=".php">./tests/</directory>
</testsuite>
<testsuite name="Multisite">
<directory prefix="test-multisite" suffix=".php">./tests/</directory>
</testsuite>
<testsuite name="Query">
<directory prefix="test-query" suffix=".php">./tests/</directory>
</testsuite>
<testsuite name="Layout">
<directory prefix="test-layout" suffix=".php">./tests/</directory>
</testsuite>
<testsuite name="Render">
<directory prefix="test-render" suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
</phpunit>