forked from aws/aws-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
33 lines (29 loc) · 1005 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php"
colors="true"
forceCoversAnnotation="true">
<php>
<!-- Specify the path to your CloudFront private key -->
<server name="CF_PRIVATE_KEY" value="changeme" />
<!-- Specify the CloudFront key pair ID to use when testing -->
<server name="CF_KEY_PAIR_ID" value="change_me" />
</php>
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">tests/</directory>
<exclude>tests/Integ</exclude>
</testsuite>
<testsuite name="integ">
<directory suffix="Test.php">tests/Integ</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
<exclude>
<directory>src/data</directory>
<file>src/functions.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>