-
Notifications
You must be signed in to change notification settings - Fork 14
/
phpunit.xml.dist
32 lines (32 loc) · 1.09 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
<?xml version="1.0"?>
<!--
~ Akamai {OPEN} EdgeGrid Auth for PHP
~
~ @author Davey Shafik <dshafik@akamai.com>
~ @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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" verbose="true" bootstrap="tests/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="false">
<include>
<directory suffix=".php">./src</directory>
</include>
<report>
<clover outputFile="build/coverage/coverage.clover"/>
<html outputDirectory="build/coverage/report"/>
<xml outputDirectory="build/coverage/xml"/>
</report>
</coverage>
<php>
<ini name="display_errors" value="on"/>
</php>
<logging/>
<testsuites>
<testsuite name="Unit Test">
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>