-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
42 lines (38 loc) · 1.1 KB
/
Copy pathphpunit.xml
File metadata and controls
42 lines (38 loc) · 1.1 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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd"
backupGlobals="true"
cacheResult="true"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="true"
stopOnSkipped="true"
stopOnRisky="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="all">
<directory>tests/unit/</directory>
</testsuite>
<testsuite name="validation">
<directory>tests/unit/Validation</directory>
</testsuite>
<testsuite name="sale">
<directory>tests/unit/Cart</directory>
<directory>tests/unit/FraudAnalysis</directory>
<directory>tests/unit/Sale</directory>
</testsuite>
<testsuite name="chargeback">
<directory>tests/unit/Chargeback</directory>
</testsuite>
<testsuite name="schedule">
<directory>tests/unit/Schedule</directory>
</testsuite>
</testsuites>
</phpunit>