@@ -62,10 +62,7 @@ private List<SuiteResult> parseSuites(File file) throws Exception {
62
62
return SuiteResult .parse (file , false );
63
63
}
64
64
65
- /**
66
- * Verifying fix for issue #1233.
67
- * https://hudson.dev.java.net/issues/show_bug.cgi?id=1233
68
- */
65
+ @ Bug (1233 )
69
66
public void testIssue1233 () throws Exception {
70
67
SuiteResult result = parseOne (getDataFile ("junit-report-1233.xml" ));
71
68
@@ -77,10 +74,9 @@ public void testIssue1233() throws Exception {
77
74
assertEquals ("Class name is incorrect" , "test.foo.bar.ProjectSettingsTest" , cases .get (4 ).getClassName ());
78
75
}
79
76
/**
80
- * Verifying fix for issue #1463.
81
77
* JUnit report file is generated by SoapUI Pro 1.7.6
82
- * https://hudson.dev.java.net/issues/show_bug.cgi?id=1463
83
78
*/
79
+ @ Bug (1463 )
84
80
public void testIssue1463 () throws Exception {
85
81
SuiteResult result = parseOne (getDataFile ("junit-report-1463.xml" ));
86
82
@@ -97,10 +93,9 @@ public void testIssue1463() throws Exception {
97
93
}
98
94
99
95
/**
100
- * Verifying fix for issue #1472.
101
96
* JUnit report produced by TAP (Test Anything Protocol)
102
- * https://hudson.dev.java.net/issues/show_bug.cgi?id=1472
103
97
*/
98
+ @ Bug (1472 )
104
99
public void testIssue1472 () throws Exception {
105
100
List <SuiteResult > results = SuiteResult .parse (getDataFile ("junit-report-1472.xml" ), false );
106
101
assertTrue (results .size ()>20 ); // lots of data here
@@ -112,10 +107,7 @@ public void testIssue1472() throws Exception {
112
107
assertTrue (!sr0 .getStdout ().equals (sr1 .getStdout ()));
113
108
}
114
109
115
- /**
116
- * Verifying fix for issue #2874.
117
- * https://hudson.dev.java.net/issues/show_bug.cgi?id=2874
118
- */
110
+ @ Bug (2874 )
119
111
public void testIssue2874 () throws Exception {
120
112
SuiteResult result = parseOne (getDataFile ("junit-report-2874.xml" ));
121
113
0 commit comments