springboot项目,使用ApplicationTests做测试时提示错误如下:
上午 11:47 Error running 'ShiroDemoApplicationTests.contextLoads': Failed to resolve org.junit.platform:junit-platform-launcher:1.7.2
解决方案,导入包
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>