-
Notifications
You must be signed in to change notification settings - Fork 41
/
phpunit.xml
60 lines (59 loc) · 2.16 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
57
58
59
60
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
backupGlobals="true"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="true"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
verbose="false">
<testsuites>
<testsuite name="Test">
<file>./tests/InitTest.php</file>
<file>./tests/OmiseExceptionTest.php</file>
<file>./tests/ClassExistsTest.php</file>
<file>./tests/AccountTest.php</file>
<file>./tests/BalanceTest.php</file>
<file>./tests/CapabilitiesTest.php</file>
<file>./tests/ChargeTest.php</file>
<file>./tests/DisputeTest.php</file>
<file>./tests/EventTest.php</file>
<file>./tests/ForexTest.php</file>
<file>./tests/LinkTest.php</file>
<file>./tests/OccurrenceTest.php</file>
<file>./tests/ReceiptTest.php</file>
<file>./tests/TransferTest.php</file>
<file>./tests/RecipientTest.php</file>
<file>./tests/RefundTest.php</file>
<file>./tests/SchedulerTest.php</file>
<file>./tests/SearchTest.php</file>
<file>./tests/SourceTest.php</file>
<file>./tests/TokenTest.php</file>
<file>./tests/TransactionTest.php</file>
<file>./tests/CardTest.php</file>
<file>./tests/CustomerTest.php</file>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">./*</directory>
</include>
<exclude>
<file>./lib/Omise.php</file>
<directory>tests</directory>
<directory>vendor</directory>
<directory>examples</directory>
</exclude>
</coverage>
</phpunit>