forked from akeneo/api-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
28 lines (24 loc) · 903 Bytes
/
phpunit.xml.dist
File metadata and controls
28 lines (24 loc) · 903 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="true"
stopOnFailure="false"
syntaxCheck="false">
<testsuite>
<directory suffix="Integration.php">tests/</directory>
</testsuite>
<testsuite name="PHP_Client_Unit_Test_1_7">
<directory suffix="Integration.php">tests/Common/Api/*</directory>
<directory suffix="Integration.php">tests/v1_7/Api/*</directory>
</testsuite>
<testsuite name="PHP_Client_Unit_Test_2_0">
<directory suffix="Integration.php">tests/Common/Api/*</directory>
<directory suffix="Integration.php">tests/v2_0/Api/*</directory>
</testsuite>
</phpunit>