Searched refs:ThirdPartyException (Results 1 – 2 of 2) sorted by relevance
60 …stener.reportInvocation(new NotifiedMethodInvocationReport(invocation, new ThirdPartyException())); in should_print_invocation_with_exception()66 .contains(ThirdPartyException.class.getName()); in should_print_invocation_with_exception()90 …stener.reportInvocation(new NotifiedMethodInvocationReport(invocation, new ThirdPartyException())); in should_log_count_of_interactions()93 …stener.reportInvocation(new NotifiedMethodInvocationReport(invocation, new ThirdPartyException())); in should_log_count_of_interactions()96 …stener.reportInvocation(new NotifiedMethodInvocationReport(invocation, new ThirdPartyException())); in should_log_count_of_interactions()104 private static class ThirdPartyException extends Exception { class in VerboseMockInvocationLoggerTest
106 doThrow(new ThirdPartyException()).when(foo).doSomething("Klipsch"); in shouldPrintThrowingInvocationOnMockToStdOut()112 } catch (ThirdPartyException e) { in shouldPrintThrowingInvocationOnMockToStdOut()119 .contains(ThirdPartyException.class.getName()); in shouldPrintThrowingInvocationOnMockToStdOut()171 static class ThirdPartyException extends RuntimeException { class in VerboseLoggingOfInvocationsOnMockTest