org.junit.Test 注解失效的问题The import org.junit cannot be resolved

检查pom依赖后确认junit的jar包,

尽管查看maven依赖里面有jar包,但是,jar包的颜色是灰色的,并且编译时报错:The import org.junit cannot be resolved

原因是<scope>test</scope>
含义是依赖项目仅仅参与测试相关的工作,包括测试代码的编译,执行,不能在src/main/java包下面使用,只能在src/test/java下使用

posted @ 2019-08-26 14:27  宇枫  阅读(4073)  评论(0编辑  收藏  举报