return (SimpleBean) instantiate(controller, bmd);
}
public void testUnmodifiableMapPreInstantiated() throws Throwable
{
UnmodifiableGetterBean bean = unmodifiableMapPreInstantiated();
assertNotNull(bean);
Map<?,?> result = bean.getMap();
assertNotNull("Should be a map", result);
Map<Object, Object> expected = new HashMap<Object, Object>();
expected.put(string1, string2);
expected.put(string2, string1);