/**
* Method testInputStreamHandler.
* @throws Exception
*/
public void testInputStreamHandler() throws Exception {
ConfigurationHandler ish = new PropertiesFileHandler("jconfig.properties");
Configuration config = ConfigurationManager.getConfiguration("default");
ConfigurationManager.getInstance().load(ish,"default");
assertEquals("8080",config.getProperty("http.proxyPort"));
assertEquals("192.168.3.1",config.getProperty("http.proxyHost"));