forked from asakusuma/SugarCRM-REST-API-Wrapper-Class
-
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) · 763 Bytes
/
Copy pathphpunit.xml
File metadata and controls
21 lines (21 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<phpunit bootstrap="./bootstrap.php" colors="true" processIsolation="false">
<!-- stopOnFailure="true" stopOnError="true">-->
<testsuite name="Library Test Suite">
<directory>../tests</directory>
</testsuite>
<filter>
<whitelist>
<directory suffix=".php">../src</directory>
<exclude>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./log/report" charset="UTF-8"
yui="true" highlight="true" lowUpperBound="50" highUpperBound="80" />
<log type="testdox" target="./log/testdox.html" />
</logging>
<listeners>
<listener class="\Mockery\Adapter\Phpunit\TestListener"></listener>
</listeners>
</phpunit>