使用@Test注解Exception in thread main java.lang.NoClassDefFoundError

1.使用springboot 2.7.14的版本,

测试类用@Test注解

出现 Exception in thread “main” java.lang.NoClassDefFoundError: org/junit/platform/launcher/TestIdentifier

使用@Test注解Exception in thread main java.lang.NoClassDefFoundError_第1张图片

Junit5 缺少 junit-platform-launcher依赖, 直接添加即可

<dependency>
    <groupId>org.junit.platformgroupId>
    <artifactId>junit-platform-launcherartifactId>
    <scope>testscope>
dependency>

你可能感兴趣的:(springboot,java,数据库,开发语言)