/*
* FIXME TODO - allow retrieval of list instance from the bean
*/
public void TODOtestCustomListPreInstantiated() throws Throwable
{
SimpleBean bean = customListPreInstantiated();
assertNotNull(bean);
List result = bean.getPreInstantiatedList();
assertNotNull("Should be a list", result);
assertTrue("Not a CustomList: " + result.getClass(), result instanceof CustomList);
assertTrue("Not preinstantiated", ((CustomList) result).getPreInstantiated());
ArrayList expected = new ArrayList();