-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
phpunit.xml.dist
26 lines (23 loc) · 991 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<php>
<!--
<env name="P12_CERT_PATH" value="./../../cert/pass.com.example.testpass.p12" />
<env name="P12_CERT_PASS" value="123456" />
<env name="WWDR_CERT_PATH" value="./../../cert/wwdr.pem" />
<env name="PASS_TYPE_ID" value="pass.com.example.testpass" />
<env name="TEAM_ID" value="ABCDE12345" />
<env name="ORG_NAME" value="Organization Name" />
-->
</php>
<testsuites>
<testsuite name="PHP-Passbook Test Suite">
<directory>tests/Passbook/Tests/</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory=".cache/code-coverage" processUncoveredFiles="true">
<include>
<directory suffix=".php">src/Passbook/</directory>
</include>
</coverage>
</phpunit>