Home
last modified time | relevance | path

Searched refs:throwsIOException (Results 1 – 4 of 4) sorted by relevance

/external/mockito/src/test/java/org/mockitousage/stubbing/
DStubbingUsingDoReturnTest.java66 doThrow(new IOException()).when(mock).throwsIOException(0); in should_allow_setting_valid_checked_exception()
69 mock.throwsIOException(0); in should_allow_setting_valid_checked_exception()
79 doThrow(new FooCheckedException()).when(mock).throwsIOException(0); in should_detect_invalid_checked_exception()
DStubbingWithThrowablesTest.java272 when(mock.throwsIOException(0)).thenThrow(CheckedException.class); in shouldNotAllowDifferntCheckedException()
/external/mockito/src/test/java/org/mockitousage/
DIMethods.java103 String throwsIOException(int count) throws IOException; in throwsIOException() method
DMethodsImpl.java192 public String throwsIOException(int count) throws IOException { in throwsIOException() method in MethodsImpl