Searched refs:throwableMatcher (Results 1 – 2 of 2) sorted by relevance
17 private final Matcher<T> throwableMatcher; field in StacktracePrintingMatcher19 public StacktracePrintingMatcher(Matcher<T> throwableMatcher) { in StacktracePrintingMatcher() argument20 this.throwableMatcher = throwableMatcher; in StacktracePrintingMatcher()24 throwableMatcher.describeTo(description); in describeTo()29 return throwableMatcher.matches(item); in matchesSafely()34 throwableMatcher.describeMismatch(item, description); in describeMismatchSafely()47 Matcher<T> throwableMatcher) { in isThrowable() argument48 return new StacktracePrintingMatcher<T>(throwableMatcher); in isThrowable()
102 public static <T extends Throwable> Matcher<T> isThrowable(Matcher<T> throwableMatcher) { in isThrowable() argument103 return StacktracePrintingMatcher.isThrowable(throwableMatcher); in isThrowable()