Searched refs:nextToBeThrown (Results 1 – 7 of 7) sorted by relevance
/external/mockito/src/main/java/org/mockito/internal/stubbing/ |
D | BaseStubbing.java | 67 …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()
|
D | StubberImpl.java | 101 …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()
|
D | DefaultLenientStubber.java | 29 …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/ |
D | StaticCapableStubber.java | 170 Class<? extends Throwable>... nextToBeThrown) { in doThrow() argument 171 instanceStubber = instanceStubber.doThrow(toBeThrown, nextToBeThrown); in doThrow()
|
/external/mockito/src/main/java/org/mockito/ |
D | BDDMockito.java | 385 …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/ |
D | BaseStubber.java | 66 …ubber doThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... nextToBeThrown); in doThrow() argument
|
D | OngoingStubbing.java | 149 …<T> thenThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... nextToBeThrown); in thenThrow() argument
|