-
Notifications
You must be signed in to change notification settings - Fork 16
/
phpunit.xml
35 lines (35 loc) · 1.18 KB
/
phpunit.xml
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
<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>
</testsuites>
</phpunit>