-
Notifications
You must be signed in to change notification settings - Fork 5
/
phpunit.xml
executable file
·50 lines (47 loc) · 1.96 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="tests/bootstrap.php"
>
<php>
<!-- Silence E_USER_DEPRECATED (-16385 == -1 & ~E_USER_DEPRECATED) -->
<ini name="error_reporting" value="-16385"/>
</php>
<testsuites>
<testsuite name="Recipients / Senders">
<file>./tests/Element/UserTest.php</file>
<file>./tests/Element/PaperAddressTest.php</file>
<file>./tests/Element/SenderTest.php</file>
<file>./tests/Element/RecipientTest.php</file>
</testsuite>
<testsuite name="Document">
<file>./tests/Element/ContentTest.php</file>
<file>./tests/Element/HashTest.php</file>
<file>./tests/Element/ContentMergeFieldTest.php</file>
<file>./tests/Element/MergeFieldTest.php</file>
<file>./tests/Element/DocumentTest.php</file>
</testsuite>
<testsuite name="Options">
<file>./tests/Element/Option/RequestTest.php</file>
<file>./tests/Element/Option/DocumentTest.php</file>
<file>./tests/Element/Option/PageTest.php</file>
<file>./tests/Element/OptionTest.php</file>
</testsuite>
<testsuite name="Fold">
<file>./tests/Element/MergeValueTest.php</file>
<file>./tests/Element/DocInFoldTest.php</file>
</testsuite>
<testsuite name="Request">
<file>./tests/Element/NotificationTest.php</file>
<file>./tests/Element/RequestTest.php</file>
</testsuite>
<testsuite name="Campaign">
<file>./tests/Element/CampaignTest.php</file>
</testsuite>
<testsuite name="FTP">
<file>./tests/Ftp/CommandTest.php</file>
</testsuite>
</testsuites>
</phpunit>