-
Notifications
You must be signed in to change notification settings - Fork 24
/
phpunit.xml.dist
32 lines (32 loc) · 1.17 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" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Bradesco API Test Suite">
<file>tests/Helpers/FormatterTest.php</file>
<file>tests/Http/BradescoTest.php</file>
<file>tests/Http/ApiTest.php</file>
<file>tests/Http/ClientTest.php</file>
<file>tests/BankSlipTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<php>
<env name="BRADESCO_TIMEOUT" value="20"/>
<env name="BRADESCO_CERT_PATH" value="myCertificate.pfx"/>
<env name="BRADESCO_CERT_PASSWORD" value="myPassword"/>
<env name="DATA" value='{"nuCPFCNPJ":"","ctrlCPFCNPJ":"","filialCPFCNPJ":"","nuNegociacao":""}' />
</php>
</phpunit>