Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Cannot Reproduce
-
Affects Version/s: 2.0 (2.2 plugin)
-
Fix Version/s: 2.4
-
Component/s: None
-
Labels:None
-
Complexity:Intermediate
-
Patch Submitted:Yes
-
Number of attachments :
Description
to reproduce
1. create the following JUnit tests:
public class TestA extends TestCase {
public void test1() {
}
}
public class TestB extends TestCase {
public void test2() {
}
2. run 'mvn clean install'
note that in TEST-TestB.xml includes testcase results from test1 and test2, even though TestB only has test2()
<testsuite errors="0" skipped="0" tests="1" time="0" failures="0" name="TestB">
...
<testcase time="0" name="test1"/>
<testcase time="0" name="test2"/>
</testsuite>
Attachments
Issue Links
| This issue duplicates: | ||||
| SUREFIRE-256 | Incoherent data between 'Package List ' and 'Test Cases' items in report |
|
|
|
| This issue is duplicated by: | ||||
| SUREFIRE-160 | Bug into xml report generation |
|
|
|
Is there a workaround for this, like using an older version of surefire ?