Searched refs:isThrowable (Results 1 – 7 of 7) sorted by relevance
4 import static org.junit.matchers.JUnitMatchers.isThrowable;27 return isThrowable(allOfTheMatchers()); in build()
102 public static <T extends Throwable> Matcher<T> isThrowable(Matcher<T> throwableMatcher) { in isThrowable() method in JUnitMatchers103 return StacktracePrintingMatcher.isThrowable(throwableMatcher); in isThrowable()
33 public abstract boolean isThrowable(); in isThrowable() method in ResolvedType
43 public static <T extends Throwable> Matcher<T> isThrowable( in isThrowable() method in StacktracePrintingMatcher
38 public boolean isThrowable() { in isThrowable() method in TypeReferenceTest.BogusResolvedType
286 public boolean isThrowable() { return Throwable.class.isAssignableFrom(_class); } in isThrowable() method in JavaType
111 if (type.isThrowable()) { in createBeanDeserializer()