-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathphpunit.dist.legacy.xml
More file actions
27 lines (24 loc) · 976 Bytes
/
phpunit.dist.legacy.xml
File metadata and controls
27 lines (24 loc) · 976 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
<?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 = "false"
stopOnFailure = "false"
beStrictAboutTestsThatDoNotTestAnything="false">
<testsuites>
<testsuite name="Alma PHP Client Unit Test Suite">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="Alma PHP Client Integration Test Suite">
<directory>tests/Integration/{MYVERSION}</directory>
</testsuite>
</testsuites>
<php>
<env name="ALMA_API_KEY" value="sk_test_*******"/>
<env name="ALMA_API_ROOT" value="alma-api-url"/>
</php>
</phpunit>