मैं एक विशेष विधि कहा जाता है जब मेरी एक नकली वस्तुओं की जाँच की अपवाद फेंकने की कोशिश कर रहा हूँ। मैं निम्नलिखित कोशिश कर रहा हूँ।
@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
मॉकिटो प्रलेखन को देखते हुए , वे केवल उपयोग करते हैं RuntimeException
, क्या मॉकिटो के साथ एक नकली वस्तु से चेक किए गए अपवादों को फेंकना संभव नहीं है?