forked from gabrielbull/php-ups-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
24 lines (24 loc) · 785 Bytes
/
phpunit.xml.dist
File metadata and controls
24 lines (24 loc) · 785 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
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false"
syntaxCheck="false">
<testsuites>
<testsuite name="UPS API Test Suite">
<directory>./tests/Ups/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">.</directory>
<exclude>
<directory>vendor/</directory>
<directory>tests/</directory>
</exclude>
</whitelist>
</filter>
</phpunit>