*/
@SuppressWarnings("unchecked")
public void testGetConvertedUISelectManyValuePOJOCollectionWithCollectionType()
{
externalContext.getApplicationMap().put("bean", new Bean());
ValueExpression expr = new MockValueExpression("#{bean.pojoCollectionValue}", Collection.class);
uiSelectMany.setValueExpression("value", expr);
uiSelectMany.setConverter(pojoConverter);
uiSelectMany.getAttributes().put("collectionType", "java.util.HashSet");
Object target = _SharedRendererUtils.getConvertedUISelectManyValue(facesContext, uiSelectMany, submittedValue);
assertTrue(target instanceof HashSet);