Searched refs:throwableType (Results 1 – 4 of 4) sorted by relevance
124 BDDMyOngoingStubbing<T> willThrow(Class<? extends Throwable> throwableType); in willThrow() argument132 …BDDMyOngoingStubbing<T> willThrow(Class<? extends Throwable> throwableType, Class<? extends Throwa… in willThrow() argument175 public BDDMyOngoingStubbing<T> willThrow(Class<? extends Throwable> throwableType) { in willThrow() argument176 return new BDDOngoingStubbingImpl<T>(mockitoOngoingStubbing.thenThrow(throwableType)); in willThrow()179 …public BDDMyOngoingStubbing<T> willThrow(Class<? extends Throwable> throwableType, Class<? extends… in willThrow() argument180 …return new BDDOngoingStubbingImpl<T>(mockitoOngoingStubbing.thenThrow(throwableType, throwableType… in willThrow()
58 public OngoingStubbing<T> thenThrow(Class<? extends Throwable> throwableType) { in thenThrow() argument59 if (throwableType == null) { in thenThrow()63 return thenThrow(newInstance(throwableType)); in thenThrow()
114 OngoingStubbing<T> thenThrow(Class<? extends Throwable> throwableType); in thenThrow() argument
132 …PsiClassType throwableType = factory.createTypeByFQClassName("java.lang.Throwable", file.getResolv… in testIsInheritor() local133 PsiClass throwableClass = throwableType.resolve(); in testIsInheritor()