文章30 | 阅读 12265 | 点赞0
TestExecutionExceptionHandler 为希望处理测试执行期间抛出的异常的扩展定义了API。
下面的示例显示了一个扩展,该扩展将包含IOException的所有实例,但将重新抛出任何其他类型的异常。
public class IgnoreIOExceptionExtension implements TestExecutionExceptionHandler {
@Override
public void handleTestExecutionException(ExtensionContext context, Throwable throwable)
throws Throwable {
if (throwable instanceof IOException) {
return;
}
throw throwable;
}
}
系列导航
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/ryo1060732496/article/details/80837585
内容来源于网络,如有侵权,请联系作者删除!