JUnit版本4.11 Eclipse Kepler
@Test
public void testName() throws Exception {
Assert.assertEquals(1, 1);
}
java.lang.NoSuchMethodError: org.junit.Assert.assertEquals(JJ)
然而,没有生成编译错误,构建服务器上的构建报告没有错误。我觉得Eclipse有点错误配置。
任何Eclipse大师都可以解决这个问题,非常感谢!
答案 0 :(得分:4)
我在项目类路径中有一个较旧的JUnit。 IDE正在使用更新的JUnit。项目中的JUnit已更新为4.11,现在一切正常。