Spring boot 2.3 版本未解决 Org.Junit
Posted
技术标签:
【中文标题】Spring boot 2.3 版本未解决 Org.Junit【英文标题】:Org.Junit is unresolved in Spring boot version 2.3 【发布时间】:2021-03-29 17:43:25 【问题描述】:我创建了一个 SPRING BOOT 应用程序版本 2.3.2,当我尝试使用 JUNIT 5 编写单元测试时。STS IDE 中的单元测试类显示 org.junit 未解析。 这是我对 build.gradle 的依赖
dependencies
compile "org.springframework.boot:spring-boot-starter-actuator:2.3.2.RELEASE"
compile "org.springframework.boot:spring-boot-starter-web:2.3.2.RELEASE"
compile "org.springframework.boot:spring-boot-starter-log4j2:2.3.2.RELEASE"
testCompile "org.springframework.boot:spring-boot-starter-test:2.3.2.RELEASE"
测试类:
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
class PasswordvaultComponentTest
@Test void test()
fail("Not yet implemented");
由于 JUNIT JUPITER 已经捆绑到 SPRING BOOT 2.3.2 中。我不需要在 gradle 中明确提供 Junit Jupiter 依赖项。我在这里缺少任何其他配置吗?非常感谢任何帮助。
【问题讨论】:
【参考方案1】:我在包 src/main/java 中有我的测试类。所以我把我的测试类移动到包 src/test/java 并且依赖被解决了。
【讨论】:
以上是关于Spring boot 2.3 版本未解决 Org.Junit的主要内容,如果未能解决你的问题,请参考以下文章
已解决:idea提示未配置 Spring Boot 配置注解处理器
Spring Boot gradle 多模块项目未解决的引用错误
项目 'org.springframework.boot:spring-boot-starter-parent:2.4.0' 未找到