forked from EasyPost/easypost-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
14 lines (13 loc) · 757 Bytes
/
phpunit.xml.dist
File metadata and controls
14 lines (13 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" bootstrap="test/bootstrap.php" cacheResultFile=".phpunit.cache/test-results" executionOrder="depends,defects" beStrictAboutCoversAnnotation="true" beStrictAboutOutputDuringTests="true" beStrictAboutTodoAnnotatedTests="true" failOnRisky="true" failOnWarning="true" verbose="true" colors="true">
<testsuites>
<testsuite name="EasyPost Test Suite">
<directory suffix="Test.php">./test/EasyPost/</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory=".phpunit.cache/code-coverage" processUncoveredFiles="true">
<include>
<directory suffix=".php">./lib/EasyPost/</directory>
</include>
</coverage>
</phpunit>