最佳答案
我试图让我的一个模拟对象抛出一个checked Exception当一个特定的方法被调用。我正在尝试以下方法。
@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
看看5文档,他们只使用RuntimeException
,难道不能用Mockito从一个模拟对象抛出受控异常吗?