Home
last modified time | relevance | path

Searched refs:throwableMatcher (Results 1 – 2 of 2) sorted by relevance

/external/junit/src/main/java/org/junit/internal/matchers/
DStacktracePrintingMatcher.java17 private final Matcher<T> throwableMatcher; field in StacktracePrintingMatcher
19 public StacktracePrintingMatcher(Matcher<T> throwableMatcher) { in StacktracePrintingMatcher() argument
20 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() argument
48 return new StacktracePrintingMatcher<T>(throwableMatcher); in isThrowable()
/external/junit/src/main/java/org/junit/matchers/
DJUnitMatchers.java102 public static <T extends Throwable> Matcher<T> isThrowable(Matcher<T> throwableMatcher) { in isThrowable() argument
103 return StacktracePrintingMatcher.isThrowable(throwableMatcher); in isThrowable()