forked from snapshotpl/smsapi-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.dist.xml
More file actions
70 lines (70 loc) · 2.61 KB
/
phpunit.dist.xml
File metadata and controls
70 lines (70 loc) · 2.61 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="false"
bootstrap="tests/bootstrap.php"
backupStaticAttributes="false"
cacheTokens="true"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="true"
>
<testsuites>
<testsuite name="all">
<directory>tests</directory>
</testsuite>
<testsuite name="unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/Integration</directory>
</testsuite>
<testsuite name="feature-contacts">
<directory>tests/Integration/Feature/Contacts</directory>
<directory>tests/Unit/Feature/Contacts</directory>
</testsuite>
<testsuite name="feature-hlr">
<directory>tests/Integration/Feature/Hlr</directory>
</testsuite>
<testsuite name="feature-mms">
<directory>tests/Integration/Feature/Mms</directory>
</testsuite>
<testsuite name="feature-ping">
<directory>tests/Integration/Feature/Ping</directory>
</testsuite>
<testsuite name="feature-profile">
<directory>tests/Integration/Feature/Profile</directory>
</testsuite>
<testsuite name="feature-push">
<directory>tests/Unit/Feature/Push</directory>
</testsuite>
<testsuite name="feature-sendernames">
<directory>tests/Integration/Feature/Sendernames</directory>
</testsuite>
<testsuite name="feature-shorturl">
<directory>tests/Integration/Feature/ShortUrl</directory>
</testsuite>
<testsuite name="feature-sms">
<directory>tests/Integration/Feature/Sms</directory>
<directory>tests/Unit/Feature/Sms</directory>
</testsuite>
<testsuite name="feature-mfa">
<directory>tests/Integration/Feature/Mfa</directory>
</testsuite>
<testsuite name="feature-subusers">
<directory>tests/Integration/Feature/Subusers</directory>
</testsuite>
<testsuite name="feature-vms">
<directory>tests/Integration/Feature/Vms</directory>
</testsuite>
<testsuite name="feature-blacklist">
<directory>tests/Integration/Feature/Blacklist</directory>
</testsuite>
</testsuites>
</phpunit>