-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
46 lines (40 loc) · 1.44 KB
/
phpunit.xml.dist
File metadata and controls
46 lines (40 loc) · 1.44 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
failOnWarning="true"
bootstrap="tests/bootstrap.php"
>
<testsuites>
<testsuite name="EnabelCodingStandardBundle test suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<source ignoreSuppressionOfDeprecations="true"
ignoreIndirectDeprecations="true"
restrictNotices="true"
restrictWarnings="true"
>
<include>
<directory>./</directory>
</include>
<exclude>
<directory>./tests</directory>
<directory>./vendor</directory>
<file>./phpinsights.php</file>
</exclude>
</source>
<coverage>
<report>
<html outputDirectory="coverage/report" lowUpperBound="35" highLowerBound="60"/>
<text outputFile="php://stdout" showUncoveredFiles="true" showOnlySummary="true"/>
<clover outputFile="coverage/clover.xml"/>
<cobertura outputFile="coverage/cobertura.xml"/>
<crap4j outputFile="coverage/crap4j.xml"/>
</report>
</coverage>
<logging>
<junit outputFile="var/coverage/junit.xml"/>
</logging>
</phpunit>