forked from ePages-de/epages-rest-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
46 lines (46 loc) · 1.41 KB
/
phpunit.xml
File metadata and controls
46 lines (46 loc) · 1.41 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
<phpunit bootstrap="src/Shop.class.php" colors="always">
<testsuites>
<testsuite name="REST client Test">
<file>tests/RESTClientTest.php</file>
</testsuite>
<testsuite name="Shop Test">
<file>tests/ShopTest.php</file>
</testsuite>
<testsuite name="Input validator Test">
<file>tests/InputValidator.php</file>
</testsuite>
<testsuite name="JSON handler Test">
<file>tests/JSONHandlerTest.php</file>
</testsuite>
<testsuite name="Logger Test">
<file>tests/LoggerTest.php</file>
</testsuite>
<testsuite name="Currencies Test">
<file>tests/CurrenciesTest.php</file>
</testsuite>
<testsuite name="Locales Test">
<file>tests/LocalesTest.php</file>
</testsuite>
<testsuite name="Contact information Test">
<file>tests/ContactInformationTest.php</file>
</testsuite>
<testsuite name="Privacy policy information Test">
<file>tests/PrivacyPolicyInformatonTest.php</file>
</testsuite>
<testsuite name="Rights of withdrawal information Test">
<file>tests/RightsOfWithdrawalInformationTest.php</file>
</testsuite>
<testsuite name="Shipping information Test">
<file>tests/ShippingInformationTest.php</file>
</testsuite>
<testsuite name="Terms and condition information Test">
<file>tests/TermsAndConditionInformationTest.php</file>
</testsuite>
</testsuites>
<groups>
<include>
<group>utility</group>
<group>shopobjects</group>
</include>
</groups>
</phpunit>