Skip to content

Commit f4ad84c

Browse files
committed
ACMS-3693: Added more attributes in PHPUnit.
1 parent d21c642 commit f4ad84c

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

phpunit.xml.dist

+23-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
23
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
3-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" colors="true" bootstrap="vendor/autoload.php" failOnWarning="true" failOnRisky="true" cacheDirectory=".phpunit.cache">
4+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
6+
colors="true"
7+
bootstrap="vendor/autoload.php"
8+
failOnWarning="true"
9+
failOnRisky="true"
10+
failOnDeprecation="true"
11+
failOnNotice="true"
12+
displayDetailsOnTestsThatTriggerWarnings="true"
13+
displayDetailsOnTestsThatTriggerErrors="true"
14+
displayDetailsOnTestsThatTriggerDeprecations="true"
15+
displayDetailsOnTestsThatTriggerNotices="true"
16+
cacheDirectory=".phpunit.cache"
17+
>
418
<php>
519
<ini name="error_reporting" value="-1"/>
620
<env name="COLUMNS" value="80" force="true"/>
@@ -11,9 +25,14 @@
1125
<directory>tests</directory>
1226
</testsuite>
1327
</testsuites>
14-
<!-- <logging>-->
15-
<!-- <testdoxHtml outputFile="testdox.html"/>-->
16-
<!-- </logging>-->
28+
<!-- <coverage cacheDirectory="var/phpunit/coverage-cache" includeUncoveredFiles="true">-->
29+
<!-- <report>-->
30+
<!-- <html outputDirectory="coverage" lowUpperBound="50" highLowerBound="90"/>-->
31+
<!-- </report>-->
32+
<!-- </coverage>-->
33+
<!-- <logging>-->
34+
<!-- <testdoxHtml outputFile="testdox.html"/>-->
35+
<!-- </logging>-->
1736
<source>
1837
<include>
1938
<directory suffix=".php">src</directory>

0 commit comments

Comments
 (0)