forked from elastic/apm-agent-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit_v8_format.xml
37 lines (37 loc) · 986 Bytes
/
phpunit_v8_format.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
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="false"
bootstrap="tests/bootstrap.php"
colors="true"
failOnRisky="true"
stopOnDefect="true"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="true"
stopOnRisky="true"
stopOnWarning="true"
verbose="true"
testdox="true"
noInteraction="true"
>
<filter>
<whitelist>
<directory suffix=".php">./src/ElasticApm/</directory>
</whitelist>
</filter>
<php>
<ini name="memory_limit" value="2G"/>
</php>
<logging>
<log type="junit" target="./build/unit-tests-phpunit-junit.xml"/>
</logging>
<testsuites>
<testsuite name="Tests">
<directory>./tests/ElasticApmTests/UnitTests</directory>
</testsuite>
</testsuites>
<extensions>
<extension class="\ElasticApmTests\UnitTests\Util\UnitTestsPhpUnitExtension"/>
</extensions>
</phpunit>