-
Notifications
You must be signed in to change notification settings - Fork 5
/
phpunit.xml.dist
28 lines (26 loc) · 1.17 KB
/
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
27
28
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="true" bootstrap="vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="Integration tests">
<directory>vendor/http-interop/http-factory-tests/test</directory>
</testsuite>
</testsuites>
<php>
<const name="REQUEST_FACTORY" value="Http\Factory\Slim\RequestFactory"/>
<const name="RESPONSE_FACTORY" value="Http\Factory\Slim\ResponseFactory"/>
<const name="SERVER_REQUEST_FACTORY" value="Http\Factory\Slim\ServerRequestFactory"/>
<const name="STREAM_FACTORY" value="Http\Factory\Slim\StreamFactory"/>
<const name="UPLOADED_FILE_FACTORY" value="Http\Factory\Slim\UploadedFileFactory"/>
<const name="URI_FACTORY" value="Http\Factory\Slim\UriFactory"/>
</php>
<filter>
<whitelist>
<directory>./src/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout"/>
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>