@Test
 public void testConfiguredStringArrayParam() throws Exception {
   conf.run("foo", new Integer[] {1, 2, 3});
   assertEquals(
       "DEBUG call run(stringParam=foo, objectParam=Collection[size=3, 1, ...]) returns Collection[size=3, 1, ...]",
       LogbackTestAppender.getMessage().trim());
 }
 @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"));
   }
 }