Home
last modified time | relevance | path

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

/external/mockito/src/test/java/org/mockitousage/stubbing/
DStubbingWithThrowablesTest.java66 doThrow(new ExceptionTwo()).when(mock).clear(); in shouldLastStubbingVoidBeImportant()
71 } catch (ExceptionTwo e) { in shouldLastStubbingVoidBeImportant()
80 when(mock.get(1)).thenThrow(new ExceptionTwo()); in shouldFailStubbingThrowableOnTheSameInvocationDueToAcceptableLimitation()
154 doThrow(new ExceptionTwo()).when(mock).clear(); in shouldMixThrowablesAndReturnsOnDifferentMocks()
184 } catch (ExceptionTwo e) { in shouldMixThrowablesAndReturnsOnDifferentMocks()
242 private class ExceptionTwo extends RuntimeException { class in StubbingWithThrowablesTest