赞
踩
SpringBoot整合依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>2.3.10.RELEASE</version>
<scope>test</scope>
</dependency>
assertEquals(23, maps.get("ID"));
assertNotNull(mapList);
//在一组断言中,当有一个执行失败,则中断执行
assertAll(
() -> assertEquals(23, maps.get("ID")),
() -> assertEquals("Kabol", maps.get("Name"))
);
assertTrue(stack.isEmpty());
//出现指定异常时,该测试通过
assertThrows(ArithmeticException.class, () -> {
int i = 1 / 0;
});
//第一个参数指定超时运行时间,lambda表达式中为执行的代码
assertTimeout(Duration.ofSeconds(5), () -> {
Thread.sleep(4000);
getService.getInfo(3);
})
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。