【JUnit】Eclipse下junit@Test出现Type mismatch: cannot convert from Test to Annotation错误

我所使用的是junit4.10,通过add external jars将junit引入到Eclipse,然后@Test来执行一个简单的测试,出现如下错误 【JUnit】Eclipse下junit@Test出现Type mismatch: cannot convert from Test to Annotation错误_第1张图片

鼠标移动到出错的@Test处,有Type mismatch: cannot convert from Test to Annotation这样的提示,
仔细一观察才发现原来自己写的测试类名也叫Test,错误的根源也就在这

你可能感兴趣的:(JAVA,软件测试)