Skip to content

Failed

org.eclipse.jdt.core.tests.compiler.regression.JavadocBugsTest.testBug258798_2b - 12 (from org.eclipse.jdt.core.tests.compiler.regression.TestAll)

Failing for the past 1 build (Since #44 )
Took 0.88 sec.

Error Message

testBug258798_2b - Eclipse found warning(s) but Javac did not find any.
----------- Expected ------------

------------ but was ------------
----------\n
1. WARNING in X.java (at line 7)\n
 Y(List<U> lu) { super(null); }\n
           ^^\n
Javadoc: Missing tag for parameter lu\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 7)\n
 Y(List<U> lu) { super(null); }\n
           ^^\n
Javadoc: Missing tag for parameter lu\n
----------\n
]>

Stacktrace

junit.framework.ComparisonFailure: 
testBug258798_2b - Eclipse found warning(s) but Javac did not find any.
----------- Expected ------------

------------ but was ------------
----------\n
1. WARNING in X.java (at line 7)\n
	Y(List<U> lu) { super(null); }\n
	          ^^\n
Javadoc: Missing tag for parameter lu\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 7)\n
	Y(List<U> lu) { super(null); }\n
	          ^^\n
Javadoc: Missing tag for parameter lu\n
----------\n
]>
	at org.eclipse.jdt.core.tests.compiler.regression.JavadocBugsTest.testBug258798_2b(JavadocBugsTest.java:8208)

Standard Output

org.eclipse.jdt.core.tests.compiler.regression.JavadocBugsTest#testBug258798_2b - 12
X.java [
import java.util.*;
public class X<T> {
X(ArrayList<T> alt) {}
}
class Y<U> extends X<U> {
/** @see X#X(ArrayList) */
Y(List<U> lu) { super(null); }
}

]

Standard Error

----------------------------------------