testSettings.load(is);
is.close();
String val = testSettings.lookUp("foo");
Assert.assertEquals("[ok,OK]", val);
try {
val = testSettings.lookUp("bad");
Assert.fail("\"bad\" should create an error");
} catch (ResourceConfigurationException e) {
System.err.println("Expected exception: " + e.toString());
}
} catch (Exception e) {