clearTestMocks();
}
@Test
public void testConfigBooleanProps() throws Exception {
ConfigurationHandler configurationHandler = new ConfigurationHandlerImpl(m_context);
resetConfigurationHandler(configurationHandler);
configurationHandler = m_agentContextImpl.getHandler(ConfigurationHandler.class);
configureAgent(configurationHandler, "boolean1", "true", "boolean2", "false");
assertEquals(configurationHandler.getBoolean("boolean1", false), true);
assertEquals(configurationHandler.getBoolean("boolean2", true), false);
assertEquals(configurationHandler.getBoolean("booleanX", true), true);
assertEquals(configurationHandler.getBoolean("booleanY", false), false);
}