-
Notifications
You must be signed in to change notification settings - Fork 93
/
phpunit.xml.dist
38 lines (34 loc) · 1.11 KB
/
phpunit.xml.dist
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
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="recurly-php">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">lib</directory>
<exclude>
<file>lib/recurly.php</file>
<file>lib/recurly/version.php</file>
<file>lib/recurly/client.php</file>
<file>lib/recurly/http_adapter.php</file>
<directory suffix=".php">lib/recurly/resources</directory>
<directory suffix=".php">lib/recurly/errors</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="coverage" />
</logging>
<php>
<ini name="date.timezone" value="America/Chicago" />
<ini name="display_errors" value="on" />
</php>
</phpunit>