Home
last modified time | relevance | path

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

/external/mockito/src/main/java/org/mockito/internal/stubbing/
DBaseStubbing.java67 …T> thenThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... nextToBeThrown) { in thenThrow() argument
68 if (nextToBeThrown == null) { in thenThrow()
72 for (Class<? extends Throwable> t : nextToBeThrown) { in thenThrow()
DStubberImpl.java101 …bber doThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... nextToBeThrown) { in doThrow() argument
104 if (nextToBeThrown == null) { in doThrow()
109 for (Class<? extends Throwable> next : nextToBeThrown) { in doThrow()
DDefaultLenientStubber.java29 …bber doThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... nextToBeThrown) { in doThrow() argument
30 return stubber().doThrow(toBeThrown, nextToBeThrown); in doThrow()
/external/dexmaker/dexmaker-mockito-inline-extended/src/main/java/com/android/dx/mockito/inline/extended/
DStaticCapableStubber.java170 Class<? extends Throwable>... nextToBeThrown) { in doThrow() argument
171 instanceStubber = instanceStubber.doThrow(toBeThrown, nextToBeThrown); in doThrow()
/external/mockito/src/main/java/org/mockito/
DBDDMockito.java385 …ber willThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... nextToBeThrown); in willThrow() argument
448 …er willThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... nextToBeThrown) { in willThrow() argument
449 return new BDDStubberImpl(mockitoStubber.doThrow(toBeThrown, nextToBeThrown)); in willThrow()
/external/mockito/src/main/java/org/mockito/stubbing/
DBaseStubber.java66 …ubber doThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... nextToBeThrown); in doThrow() argument
DOngoingStubbing.java149 …<T> thenThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... nextToBeThrown); in thenThrow() argument