forked from Mastercard/mastercard-bintable-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
21 lines (21 loc) · 969 Bytes
/
phpunit.xml
File metadata and controls
21 lines (21 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./Test</directory>
</testsuite>
</testsuites>
<logging>
<!--
<log type="coverage-html" target="./result/report" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="./result/coverage.xml"/>
<log type="coverage-php" target="./result/coverage.serialized"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
-->
<log type="json" target="./result/logfile.json"/>
<log type="tap" target="./result/logfile.tap"/>
<log type="junit" target="./result/logfile.xml" logIncompleteSkipped="false"/>
<log type="testdox-html" target="./result/testdox.html"/>
<log type="testdox-text" target="./result/testdox.txt"/>
</logging>
</phpunit>