-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
27 lines (27 loc) · 1009 Bytes
/
phpunit.xml.dist
File metadata and controls
27 lines (27 loc) · 1009 Bytes
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
<phpunit bootstrap="app/autoload.php" colors="true" verbose="true">
<testsuites>
<testsuite name="Comments micro service tests">
<directory>tests/</directory>
</testsuite>
</testsuites>
<php>
<server name="KERNEL_DIR" value="app/" />
<ini name="error_reporting" value="-1" />
</php>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
<exclude>
<directory>src/LegacyBundle/</directory>
</exclude>
</whitelist>
</filter>
<listeners>
<listener class="\Mockery\Adapter\Phpunit\TestListener"/>
</listeners>
<logging>
<log type="coverage-text" target="php://stdout" lowUpperBound="50" highLowerBound="80"/>
<log type="coverage-html" target="build/logs/coverage" charset="UTF-8" highlight="true" lowUpperBound="50" highLowerBound="80"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>