执行juint的@Test报错

2022-06-14 15:42:13 浏览数 (1)

在编写一些和stream相关的测试用例时出现junit的错误

网上查了一下这个问题的原因:

最主要的问题是IntelliJ IDEA版本和junit版本不适配问题 有2中解决方案: 1 将IntelliJ IDEA的版本升级到2020.x.x以上的版本 2 在项目的pom.xml文件中添加如下依赖:

代码语言:javascript复制
		<dependency>
			<groupId>org.junit.platform</groupId>
			<artifactId>junit-platform-launcher</artifactId>
			<scope>test</scope>
		</dependency>

加上pom依赖之后就正常了

扩展

  • 新版spring-boot-starter-test不再集成junit,而是junit-jupiter

测试类中: 1、spring-boot-starter-test 2.5.5 版本只需要在类上加上@SpringBootTest即可,不需要再加@RunWith()注解了

@RunWith注解在juint中有这个注解,对应版本:4.13.1

0 人点赞