Dictionary dict = new Properties();
dict.put("joe", "satriani");
MapBasedDictionary wrapper = new MapBasedDictionary();
wrapper.putAll(dict);
assertTrue(wrapper.containsKey("joe"));
}
public void testValue() throws Exception {
Dictionary dict = new Properties();
dict.put("joe", "satriani");