File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
unit/TextUI/Configuration/Xml Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 29
29
<cobertura outputFile =" cobertura.xml" />
30
30
<crap4j outputFile =" crap4j.xml" threshold =" 30" />
31
31
<html outputDirectory =" coverage" lowUpperBound =" 50" highLowerBound =" 90" />
32
- <openclover outputFile =" clover .xml" />
32
+ <openclover outputFile =" openclover .xml" />
33
33
<php outputFile =" coverage.php" />
34
34
<text outputFile =" coverage.txt" showUncoveredFiles =" false" showOnlySummary =" true" />
35
35
<xml outputDirectory =" coverage" />
Original file line number Diff line number Diff line change @@ -193,6 +193,9 @@ public function testCodeCoverageConfigurationIsReadCorrectly(): void
193
193
$ this ->assertTrue ($ codeCoverage ->hasClover ());
194
194
$ this ->assertSame (TEST_FILES_PATH . 'clover.xml ' , $ codeCoverage ->clover ()->target ()->path ());
195
195
196
+ $ this ->assertTrue ($ codeCoverage ->hasOpenClover ());
197
+ $ this ->assertSame (TEST_FILES_PATH . 'openclover.xml ' , $ codeCoverage ->openClover ()->target ()->path ());
198
+
196
199
$ this ->assertTrue ($ codeCoverage ->hasCobertura ());
197
200
$ this ->assertSame (TEST_FILES_PATH . 'cobertura.xml ' , $ codeCoverage ->cobertura ()->target ()->path ());
198
201
You can’t perform that action at this time.
0 commit comments