使用 Mockito 从模拟中抛出已检查的异常
我正在尝试让一个模拟对象在调用特定方法时引发已检查的异常。我正在尝试以下操作。
@Test(expectedExceptions = SomeException.class)
public void throwCheckedException() {
List<String> list = mock(List.class);
when(list.get(0)).thenThrow(new SomeException());
String test = list.get(0);
}
public class SomeException extends Exception {
}
但是,这会产生以下错误。
org.testng.TestException:
Expected exception com.testing.MockitoCheckedExceptions$SomeException but got org.mockito.exceptions.base.MockitoException:
Checked exception is invalid for this method!
Invalid: com.testing.MockitoCheckedExceptions$SomeException
查看Mockito文档,他们只使用,是不是可以用Mockito从模拟对象中抛出检查的异常?RuntimeException