Skip to content

Failed

org.eclipse.jdt.core.tests.compiler.regression.ProblemTypeAndMethodTest.test102 - 1.8 (from org.eclipse.jdt.core.tests.compiler.regression.TestAll)

Failing for the past 1 build (Since #9 )
Took 0.67 sec.

Error Message

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

------------ but was ------------
----------\n
1. WARNING in X.java (at line 3)\n
 private void foo() {}\n
              ^^^^^\n
The method foo() from the type X.A is never used locally\n
----------\n
2. WARNING in X.java (at line 4)\n
 private void foo(int a) {}\n
              ^^^^^^^^^^\n
The method foo(int) from the type X.A is never used locally\n
----------\n
3. WARNING in X.java (at line 6)\n
 public class B extends A {}\n
              ^\n
Access to enclosing constructor X.A() is emulated by a synthetic accessor method\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 3)\n
 private void foo() {}\n
              ^^^^^\n
The method foo() from the type X.A is never used locally\n
----------\n
2. WARNING in X.java (at line 4)\n
 private void foo(int a) {}\n
              ^^^^^^^^^^\n
The method foo(int) from the type X.A is never used locally\n
----------\n
3. WARNING in X.java (at line 6)\n
 public class B extends A {}\n
              ^\n
Access to enclosing constructor X.A() is emulated by a synthetic accessor method\n
----------\n
]>

Stacktrace

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

------------ but was ------------
----------\n
1. WARNING in X.java (at line 3)\n
	private void foo() {}\n
	             ^^^^^\n
The method foo() from the type X.A is never used locally\n
----------\n
2. WARNING in X.java (at line 4)\n
	private void foo(int a) {}\n
	             ^^^^^^^^^^\n
The method foo(int) from the type X.A is never used locally\n
----------\n
3. WARNING in X.java (at line 6)\n
	public class B extends A {}\n
	             ^\n
Access to enclosing constructor X.A() is emulated by a synthetic accessor method\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 3)\n
	private void foo() {}\n
	             ^^^^^\n
The method foo() from the type X.A is never used locally\n
----------\n
2. WARNING in X.java (at line 4)\n
	private void foo(int a) {}\n
	             ^^^^^^^^^^\n
The method foo(int) from the type X.A is never used locally\n
----------\n
3. WARNING in X.java (at line 6)\n
	public class B extends A {}\n
	             ^\n
Access to enclosing constructor X.A() is emulated by a synthetic accessor method\n
----------\n
]>
	at org.eclipse.jdt.core.tests.junit.extension.TestCase.assertStringEquals(TestCase.java:260)
	at org.eclipse.jdt.core.tests.junit.extension.TestCase.assertEquals(TestCase.java:236)
	at org.eclipse.jdt.core.tests.compiler.regression.AbstractRegressionTest.runJavac(AbstractRegressionTest.java:2060)
	at org.eclipse.jdt.core.tests.compiler.regression.AbstractRegressionTest.runTest(AbstractRegressionTest.java:2814)
	at org.eclipse.jdt.core.tests.compiler.regression.AbstractRegressionTest.runTest(AbstractRegressionTest.java:2539)
	at org.eclipse.jdt.core.tests.compiler.regression.AbstractRegressionTest.runNegativeTest(AbstractRegressionTest.java:2113)
	at org.eclipse.jdt.core.tests.compiler.regression.AbstractRegressionTest.runNegativeTest(AbstractRegressionTest.java:2102)
	at org.eclipse.jdt.core.tests.compiler.regression.ProblemTypeAndMethodTest.test102(ProblemTypeAndMethodTest.java:5350)

Standard Output

org.eclipse.jdt.core.tests.compiler.regression.ProblemTypeAndMethodTest#test102 - 1.8
X.java [
public class X {
    private class A {
        private void foo() {}
        private void foo(int a) {}
    }
    public class B extends A {}
}
]


Full results sent to /tmp/comptest/run.1514610271420/1.8.0_131_20171230_000432.txt

Standard Error

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