-
-
Notifications
You must be signed in to change notification settings - Fork 162
/
phpunit.xml.dist
46 lines (46 loc) · 1.98 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" colors="true"
bootstrap="tests/bootstrap.php" failOnRisky="true" failOnWarning="true"
displayDetailsOnTestsThatTriggerWarnings="true">
<php>
<ini name="error_reporting" value="-1"/>
</php>
<testsuites>
<testsuite name="unit_tests">
<directory>./tests/Unit</directory>
</testsuite>
<testsuite name="integration_tests">
<directory>./tests/Integration</directory>
</testsuite>
<testsuite name="integration_tests_core">
<directory>./tests/Integration/Core/</directory>
</testsuite>
<testsuite name="integration_tests_scope_telephony">
<directory>./tests/Integration/Services/Telephony/</directory>
</testsuite>
<testsuite name="integration_tests_scope_im">
<directory>./tests/Integration/Services/IM/</directory>
</testsuite>
<testsuite name="integration_tests_scope_im_open_lines">
<directory>./tests/Integration/Services/IMOpenLines/</directory>
</testsuite>
<testsuite name="integration_tests_scope_placement">
<directory>./tests/Integration/Services/Placement/</directory>
</testsuite>
<testsuite name="integration_tests_scope_user">
<directory>./tests/Integration/Services/User/</directory>
</testsuite>
<testsuite name="integration_tests_scope_user_consent">
<directory>./tests/Integration/Services/UserConsent/</directory>
</testsuite>
<testsuite name="integration_tests_scope_workflows">
<directory>./tests/Integration/Services/Workflows/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>./src</directory>
</include>
</source>
</phpunit>