-
Notifications
You must be signed in to change notification settings - Fork 181
/
phpunit.xml.dist
82 lines (82 loc) · 2.43 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
backupGlobals="true"
convertDeprecationsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false"
>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="default">
<directory>test</directory>
</testsuite>
<testsuite name="verify">
<directory>test/Verify</directory>
</testsuite>
<testsuite name="application">
<directory>test/Application</directory>
</testsuite>
<testsuite name="verify2">
<directory>test/Verify2</directory>
</testsuite>
<testsuite name="client">
<directory>test/Client</directory>
</testsuite>
<testsuite name="sim_swap">
<directory>test/SimSwap</directory>
</testsuite>
<testsuite name="number_verification">
<directory>test/NumberVerification</directory>
</testsuite>
<testsuite name="conversations">
<directory>test/Conversation</directory>
</testsuite>
<testsuite name="client">
<directory>test/Client</directory>
</testsuite>
<testsuite name="proactive_connect">
<directory>test/ProactiveConnect</directory>
</testsuite>
<testsuite name="voice">
<directory>test/Voice</directory>
</testsuite>
<testsuite name="numbers">
<directory>test/Numbers</directory>
</testsuite>
<testsuite name="messages">
<directory>test/Messages</directory>
</testsuite>
<testsuite name="sms">
<directory>test/SMS</directory>
</testsuite>
<testsuite name="simswap">
<directory>test/SimSwap</directory>
</testsuite>
<testsuite name="subaccount">
<directory>test/Subaccount</directory>
</testsuite>
<testsuite name="meetings">
<directory>test/Meetings</directory>
</testsuite>
<testsuite name="application">
<directory>test/Application</directory>
</testsuite>
<testsuite name="users">
<directory>test/Users</directory>
</testsuite>
</testsuites>
<php>
<ini name='error_reporting' value='E_ALL' />
<ini name='display_errors' value='true' />
</php>
</phpunit>