Skip to content

Failed

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

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

Error Message

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

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

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

Stacktrace

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

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

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 3)\n
	public void foo(int a) {\n
	            ^^^^^^^^^^\n
The method foo(int) from the type X.A is never used locally\n
----------\n
2. WARNING in X.java (at line 6)\n
	public void foo(float a) {\n
	            ^^^^^^^^^^^^\n
The method foo(float) from the type X.A is never used locally\n
----------\n
3. WARNING in X.java (at line 9)\n
	public void foo(boolean a) {\n
	            ^^^^^^^^^^^^^^\n
The method foo(boolean) from the type X.A is never used locally\n
----------\n
4. WARNING in X.java (at line 16)\n
	private class B extends A {\n
	              ^\n
Access to enclosing constructor X.A() is emulated by a synthetic accessor method\n
----------\n
5. WARNING in X.java (at line 23)\n
	public void foo(double a) {\n
	            ^^^^^^^^^^^^^\n
The method foo(double) from the type X.B is never used locally\n
----------\n
6. WARNING in X.java (at line 30)\n
	public class C extends B {\n
	             ^\n
Access to enclosing constructor X.B() 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.test099(ProblemTypeAndMethodTest.java:5083)

Standard Output

org.eclipse.jdt.core.tests.compiler.regression.ProblemTypeAndMethodTest#test099 - 1.8
X.java [
public class X {
    private class A {
    	public void foo(int a) {
   		System.out.println("Hello");
    	}
	    public void foo(float a) {
   		System.out.println("Hello");
   	}
   	public void foo(boolean a) {
   		System.out.println("Hello");
   	}
      	public void foo(Integer a) {
   		System.out.println("Hello");
   	}
   }
   private class B extends A {
		public void foo(int a) {
   		System.out.println("Hello");
   	}
		public void foo(float a) {
   		System.out.println("Hello");
   	}
   	public void foo(double a) {
   		System.out.println("Hello");
   	}
   	public void foo(char a) {
   		System.out.println("Hello");
   	}
   }
   public class C extends B {
		public void foo(int a) {
			System.out.println("Hello");
		}
		public void foo(double a) {
			System.out.println("Hello");
		}
		public void foo(boolean a) {
			System.out.println("Hello");
		}
		public void foo(byte a) {
			System.out.println("Hello");
		}
   }
}

]


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

Standard Error

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