测试类报错Test cannot be resolved to a type

在搭建一个项目的时候(有用到Spring),编写测试类发现@Test报错

Test cannot be resolved to a type

import org.junit.Test;则报错

The import org.junit cannot be resolved

重新正确导入了JUnit4后(网上大多是有关JUnit导入配置的方法),还是报错,并没有解决问题。如图所示:

这里写图片描述
这里写图片描述

解决办法:
缺少org.junit\com.springsource.org.junit包
百度云
密码:1e8v
本人之前@RunWith,@Before也同样报了相似得错。特此防止下次犯低级错误
注意:有使用到Spring的测试类标签报错都得导入这个包。

你可能感兴趣的:(bug,Spring,Mybatis,JUnit4,Spring,bug,Mybatis)