-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml.dist
26 lines (26 loc) · 960 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" bootstrap="./vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="default">
<directory>tests/</directory>
</testsuite>
<testsuite name="factory">
<directory>tests/FactoryLocatorTest.php</directory>
<directory>tests/HttpFactoryTest.php</directory>
</testsuite>
<testsuite name="client">
<directory>tests/ClientLocatorTest.php</directory>
<directory>tests/HttpClientTest.php</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout"/>
<log type="coverage-html" target="build/coverage"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>