ฉันกำลังพยายามให้วัตถุที่เยาะเย้ยคนหนึ่งของฉันโยนข้อยกเว้นที่เลือกไว้เมื่อเรียกวิธีการเฉพาะ ฉันกำลังพยายามดังต่อไปนี้
@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 ที่พวกเขาใช้เท่านั้นRuntimeException
เป็นไปไม่ได้ที่จะโยนการตรวจสอบยกเว้นจากวัตถุจำลองด้วย Mockito?