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

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

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

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

相关文章
相关标签/搜索