-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathphpunit.xml
37 lines (37 loc) · 1.27 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
<?xml version="1.0"?>
<phpunit
bootstrap="tests/unit/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="Main class started">
<file>./tests/unit/MainClassTest.php</file>
</testsuite>
<testsuite name="Gateways loaded">
<file>./tests/unit/Gateways.php</file>
</testsuite>
<testsuite name="Actions tested">
<directory suffix="Test.php">./tests/unit/actions</directory>
</testsuite>
<testsuite name="Functions tested">
<directory suffix="Test.php">./tests/unit/Functions</directory>
</testsuite>
<testsuite name="OrderFlow tested">
<directory suffix="Test.php">./tests/unit/orderFlow</directory>
</testsuite>
<testsuite name="Gateways tested">
<directory suffix="Test.php">./tests/unit/gatewaysTests</directory>
</testsuite>
<testsuite name="Tokens tested">
<directory suffix="Test.php">./tests/unit/tokens</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./includes</directory>
</whitelist>
</filter>
</phpunit>