-
Notifications
You must be signed in to change notification settings - Fork 6
/
phpunit.xml
56 lines (51 loc) · 2.17 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
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="true"
backupStaticAttributes="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="TcoConfigTest">
<file>tests/Tco/Unit/TcoConfigTest.php</file>
</testsuite>
<testsuite name="TwocheckoutFacadeTest">
<file>tests/Tco/Unit/TwocheckoutFacadeTest.php</file>
</testsuite>
<testsuite name="ApiCoreTest">
<file>tests/Tco/Integration/Api/Rest/V6/ApiCoreTest.php</file>
</testsuite>
<testsuite name="AuthTest">
<file>tests/Tco/Integration/Api/Rest/V6/AuthTest.php</file>
</testsuite>
<testsuite name="OrderDynamicProductTest">
<file>tests/Tco/Integration/Api/Rest/V6/OrderDynamicProductTest.php</file>
</testsuite>
<testsuite name="OrderCatalogProductTest">
<file>tests/Tco/Integration/Api/Rest/V6/OrderCatalogProductTest.php</file>
</testsuite>
<testsuite name="SubscriptionTest">
<file>tests/Tco/Integration/Api/Rest/V6/SubscriptionTest.php</file>
</testsuite>
<testsuite name="Base64Test">
<file>tests/Tco/Unit/BuyLinkSignature/Jwt/Encoder/Helper/Base64Test.php</file>
</testsuite>
<testsuite name="JsonEncoderTest">
<file>tests/Tco/Unit/BuyLinkSignature/Jwt/Encoder/Helper/JsonEncoderTest.php</file>
</testsuite>
<testsuite name="EncodeHS512Test">
<file>tests/Tco/Unit/BuyLinkSignature/Jwt/Encoder/EncodeHS512Test.php</file>
</testsuite>
<testsuite name="BuyLinkSignatureGeneratorTest">
<file>tests/Tco/Integration/BuyLinkSignature/BuyLinkSignatureGeneratorTest.php</file>
</testsuite>
<testsuite name="IpnSignatureTest">
<file>tests/Tco/Integration/Ipn/IpnSignatureTest.php</file>
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="testing"/>
</php>
</phpunit>