标签:stat 失败 用例 返回 equal assert equals 方法 path
1.导入
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
2.代码示例
assertAll("返回值校验:",
()->assertEquals("0",response.path("errcode").toString()),
()->assertEquals("created",response.path("errmsg"))
);
注:此方法可实现1个用例中包含多个断言,遇到断言失败仍然会继续下一个断言
标签:stat 失败 用例 返回 equal assert equals 方法 path
原文地址:https://www.cnblogs.com/bky2020bky/p/13347901.html