}
@Test
public void testSetConfiguration() throws Throwable {
ProtectedLogListener protectedLogListener = new ProtectedLogListener();
Configuration cfg = new SimpleConfiguration();
protectedLogListener.setConfiguration(cfg);
assertEquals("protectedLogListener.protectFields.length", 0, protectedLogListener.protectFields.length);
assertEquals("protectedLogListener.wipeFields.length", 0, protectedLogListener.wipeFields.length);
assertSame("protectedLogListener.cfg", cfg, protectedLogListener.cfg);
}