@Test public void testConfiguredCheckedException() throws Throwable { try { conf.runAndThrow("foo", new Exception("e message")); fail(); } catch (Exception e) { assertThat( LogbackTestAppender.getMessage().trim(), is( "DEBUG call runAndThrow(objectParam=foo, throwable=java.lang.Exception: e message) caused java.lang.Exception: e message")); } }
@Test public void testConfiguredRuntimeException() throws Throwable { try { conf.runAndThrow("foo", new RuntimeException("re message")); fail(); } catch (RuntimeException e) { assertThat( LogbackTestAppender.getMessage(), StringStartsWith.startsWith( "WARN call runAndThrow(objectParam=foo, throwable=java.lang.RuntimeException: re message) caused java.lang.RuntimeException: re message" + "\njava.lang.RuntimeException: re message" + "\n\tat com.github.sfleiter.cdi_interceptors.LoggingInterceptorTest.testConfiguredRuntimeException(LoggingInterceptorTest.java")); } }