我在单元测试中使用Mockito.我有一个方法
public Status getResponse(Request requset) throws DataException{ }
DataException是我自己定义的一个继承自Exception类的.
在我的测试用例中
static{ when(process.getResponse(any(Request.class))). thenReturn(new Status("Success")); }
它给出了一个错误,Unhandled Exception:DataException
Mockito有没有办法在不添加try / catch的情况下处理这个问题?