-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphpunit.xml
35 lines (34 loc) · 1.32 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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd"
bootstrap="Tests/bootstrap-phpunit.php">
<testsuites>
<testsuite name="Core tests">
<directory>Tests</directory>
</testsuite>
<testsuite name="Adyen tests">
<directory>PaymentProviders/Adyen/Tests/phpunit</directory>
</testsuite>
<testsuite name="Amazon tests">
<directory>PaymentProviders/Amazon/Tests/phpunit</directory>
</testsuite>
<testsuite name="Braintree tests">
<directory>PaymentProviders/Braintree/Tests/phpunit</directory>
</testsuite>
<testsuite name="Ingenico tests">
<directory>PaymentProviders/Ingenico/Tests/phpunit</directory>
</testsuite>
<testsuite name="PayPal tests">
<directory>PaymentProviders/PayPal/Tests/phpunit</directory>
</testsuite>
<testsuite name="dLocal tests">
<directory>PaymentProviders/dlocal/Tests/phpunit</directory>
</testsuite>
<testsuite name="gr4vy tests">
<directory>PaymentProviders/Gravy/Tests/phpunit</directory>
</testsuite>
<testsuite name="Fundraise-up tests">
<directory>PaymentProviders/Fundraiseup/Tests/phpunit</directory>
</testsuite>
</testsuites>
</phpunit>