forked from gerencianet/gn-api-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
22 lines (22 loc) · 845 Bytes
/
config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<phpunit bootstrap="./vendor/autoload.php" colors="true" verbose="true"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd">
<testsuites>
<testsuite name="Gerencianet Test Suite">
<directory suffix="Test.php">./test/Gerencianet</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src/Gerencianet</directory>
<exclude>
<directory>./src/Gerencianet/Exception</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
<log type="coverage-html" target="./coverage" showUncoveredFiles="false"/>
<log type="coverage-clover" target="./build/logs/clover.xml"/>
</logging>
</phpunit>