当前位置: 代码迷 >> 综合 >> Junit5 异常测试:
  详细解决方案

Junit5 异常测试:

热度:26   发布时间:2023-12-20 21:22:09.0

try{

}catch(Exception e){

AssertThat(e, instanceOf(异常的类名.class));

}

这个方法也可以:

Assertions.assertThrow(异常名.class,()-{调用异常的方法});

Java单元测试之JUnit 5快速上手 - 闻人的技术博客 - 博客园 (cnblogs.com)

  相关解决方案