assertEquals("Hello", values[0]);
assertEquals("World", values[1]);
}
public void testSetGetParent() {
EProperties props = new EProperties();
props.setProperty("test.property", "test");
DatabasePropertyResourceBundle bundle =
new DatabasePropertyResourceBundle(props);
assertEquals("test", bundle.getString("test.property"));
assertNull(bundle.getString("parent.property"));
EProperties parentProps = new EProperties();
parentProps.setProperty("parent.property", "parent");
DatabasePropertyResourceBundle parentBundle =
new DatabasePropertyResourceBundle(parentProps);
bundle.setParent(parentBundle);