/*
* FIXME TODO - allow retrieval of collection instance from the bean
*/
public void TODOtestCustomCollectionPreInstantiated() throws Throwable
{
SimpleBean bean = customCollectionPreInstantiated();
assertNotNull(bean);
Collection result = bean.getPreInstantiatedCollection();
assertNotNull("Should be a collection", result);
assertTrue("Not a CustomCollection: " + result.getClass(), result instanceof CustomCollection);
assertTrue("Not preinstantiated", ((CustomCollection) result).getPreInstantiated());
ArrayList expected = new ArrayList();