-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
25 lines (24 loc) · 955 Bytes
/
phpunit.xml
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
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd" bootstrap="tests/bootstrap.php">
<php>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
</php>
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory=".phpunit-coverage-cache">
<include>
<file>src/Service/AriesAgentClient.php</file>
<file>src/Service/DidExternalApi.php</file>
<file>src/Service/ExternalApi.php</file>
<file>src/Service/SimpleHttpClient.php</file>
<directory suffix=".php">src/Entity</directory>
</include>
<report>
<html outputDirectory="build/coverage"/>
<text outputFile="build/coverage.txt"/>
</report>
</coverage>
</phpunit>