-
Notifications
You must be signed in to change notification settings - Fork 14
/
phpunit.xml.dist
31 lines (30 loc) · 1.04 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
<!--
~ Akamai {OPEN} EdgeGrid Auth for PHP
~
~ @author Davey Shafik <[email protected]>
~ @copyright Copyright 2016 Akamai Technologies, Inc. All rights reserved.
~ @license Apache 2.0
~ @link https://github.com/akamai-open/edgegrid-auth-php
~ @link https://developer.akamai.com
~ @link https://developer.akamai.com/introduction/Client_Auth.html
-->
<phpunit colors="true" verbose="true" bootstrap="tests/bootstrap.php">
<php>
<ini name="display_errors" value="on"/>
</php>
<logging>
<log type="coverage-html" target="build/coverage/report"/>
<log type="coverage-xml" target="build/coverage/xml"/>
<log type="coverage-clover" target="build/coverage/coverage.clover"/>
</logging>
<testsuites>
<testsuite name="Unit Test">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
</phpunit>