@Test
public void defaultLayout() throws Exception {
configure(TeztConstants.TEST_DIR_PREFIX + "input/joran/defaultLayout.xml");
StringListAppender<IAccessEvent> listAppender = (StringListAppender<IAccessEvent>) context
.getAppender("STR_LIST");
IAccessEvent event = DummyAccessEventBuilder.buildNewAccessEvent();
listAppender.doAppend(event);
assertEquals(1, listAppender.strList.size());
// the result contains a line separator at the end
assertTrue(listAppender.strList.get(0).startsWith("testMethod"));
}