-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathphpunit.xml
More file actions
59 lines (59 loc) · 2.18 KB
/
Copy pathphpunit.xml
File metadata and controls
59 lines (59 loc) · 2.18 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
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="general">
<directory>./tests/test-plugin.php</directory>
</testsuite>
<testsuite name="logger">
<directory>./tests/test-logger.php</directory>
</testsuite>
<testsuite name="accounts">
<directory>./tests/test-accounts.php</directory>
</testsuite>
<testsuite name="post-format">
<directory>./tests/test-post-format.php</directory>
</testsuite>
<testsuite name="scheduler">
<directory>./tests/test-scheduler.php</directory>
</testsuite>
<testsuite name="content">
<directory>./tests/test-content.php</directory>
</testsuite>
<testsuite name="queue">
<directory>./tests/test-queue.php</directory>
</testsuite>
<testsuite name="selector">
<directory>./tests/test-selector.php</directory>
</testsuite>
<testsuite name="keyword-filter">
<directory>./tests/test-keyword-filter.php</directory>
</testsuite>
<testsuite name="gmb-image">
<directory>./tests/test-gmb-image.php</directory>
</testsuite>
<testsuite name="build-url">
<directory>./tests/test-build-url.php</directory>
</testsuite>
<testsuite name="legacy-auth-cap">
<directory>./tests/test-legacy-auth-cap.php</directory>
</testsuite>
<testsuite name="bluesky-image">
<directory>./tests/test-bluesky-image.php</directory>
</testsuite>
<testsuite name="bluesky-grapheme">
<directory>./tests/test-bluesky-grapheme.php</directory>
</testsuite>
<testsuite name="bluesky-card">
<directory>./tests/test-bluesky-card.php</directory>
</testsuite>
<testsuite name="x-premium-limit">
<directory>./tests/test-x-premium-limit.php</directory>
</testsuite>
</testsuites>
</phpunit>