gpt4 book ai didi

java - 实例化ResponseException以进行测试时,未处理的IOException

转载 作者:行者123 更新时间:2023-12-03 00:45:26 25 4
gpt4 key购买 nike

尝试为使用ResponseException的 flex 搜索异常处理程序创建单元测试
但无法设置对象。模拟不起作用,因为ResponseException是最终类。

private ResponseException responseException = new ResponseException(response);
产生以下编译错误:
未处理的异常:java.io.IOException
任何帮助表示赞赏。

最佳答案

这种情况下的典型Java技巧:

private ResponseException responseException = create(response);

private ResponseException create(Response response) {
try {
return new ResponseException(response);
} catch(Exception ex) {
throw new RuntimeException(ex);
}
}

关于java - 实例化ResponseException以进行测试时,未处理的IOException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62644778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com