-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
53 lines (47 loc) · 1.88 KB
/
phpunit.xml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="./vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="true"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="SmartyStreetsAPI Test Suite">
<directory suffix="Test.php">./tests/source/</directory>
</testsuite>
</testsuites>
<listeners>
<listener
class="\Mockery\Adapter\Phpunit\TestListener"
file="vendor/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php"
>
</listener>
</listeners>
<filter>
<blacklist>
<directory suffix="Interface.php">./source</directory>
</blacklist>
<whitelist>
<directory suffix=".php">./source/</directory>
<exclude>
<directory suffix=".php">./source/Support/Laravel/config</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="./tests/logs/coverage.xml"/>
<log type="coverage-html" target="./tests/logs/report" charset="UTF-8" highlight="false" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-text" target="./tests/logs/coverage.txt" showUncoveredFiles="true"/>
<!-- <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/> -->
<log type="json" target="./tests/logs/logfile.json"/>
<log type="tap" target="./tests/logs/logfile.tap"/>
<log type="testdox-html" target="./tests/logs/testdox.html"/>
<log type="testdox-text" target="./tests/logs/testdox.txt"/>
</logging>
</phpunit>