-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
55 lines (47 loc) · 1.66 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="false"
colors="true"
bootstrap="./vendor/autoload.php"
>
<testsuites>
<testsuite name="Test suite">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>legacy</group>
</exclude>
</groups>
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
<report>
<!-- clover outputFile=".phpunit-reports/clover.xml" /-->
<!-- cobertura outputFile=".phpunit-reports/cobertura.xml" /-->
<!-- crap4j outputFile=".phpunit-reports/crap4j.xml" threshold="50" /-->
<!-- html outputDirectory=".phpunit-reports/html-coverage" /-->
<!-- php outputFile=".phpunit-reports/coverage.php" /-->
<!-- text outputFile=".phpunit-reports/coverage.txt" showUncoveredFiles="false" showOnlySummary="true" /-->
<!-- xml outputDirectory=".phpunit-reports/xml-coverage" /-->
</report>
</coverage>
<!-- PHPUnit <9 coverage setup -->
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
<php>
<ini name="error_reporting" value="-1" />
<ini name="intl.default_locale" value="en" />
<ini name="intl.error_level" value="0" />
<ini name="memory_limit" value="-1" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0" />
</php>
</phpunit>