Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Duplicate
-
Affects Version/s: 2.0 Report Plugin
-
Fix Version/s: None
-
Component/s: Maven Surefire Report Plugin
-
Labels:None
-
Patch Submitted:Yes
-
Number of attachments :
Description
As it can be seen of the attached file, the ConfigTest has incoherent data between items 'Package List ' and 'Test Cases' .
In 'Package List ' :
Class Tests Errors Failures Success Rate Time
ConfigTest 3 0 0 100% 0.585
ConfigTest has just 3 tests.
But, in 'Test Cases', there are much more than 3 tests (they are duplicated from the other tested class ManagerTest !)
ConfigTest
testCBEM1 0.039
testCBEM2 0.001
testCBEM3 0.001
testCBEM4 0.001
testCBEM5 0
testCBEM6 0
testCBEM7 0
testCBEM8 0
testCBEM9 0
testCBEM10 0.001
testCBEM11 0
testCBEM12 0.001
testGetBooleanProperty 0.528
testGetFloatProperty 0.029
testGetIntProperty 0.012
Attachments
Issue Links
| This issue duplicates: | ||||
| SUREFIRE-122 | With forkmode once, XML reports are cumulative |
|
|
|
| This issue is duplicated by: | ||||
| SUREFIRE-52 | XML Reports include testcases from previous tests |
|
|
|
XMLReporter keeps a private list of test result which is never cleared, attaching a patch that uses .reset() to clear the list. works for me.