Expression e1=new BasicCollectionExpression(v,t);
assertTrue(e1.getType().getType()== TypeConstants.intType);
assertTrue(e1.isArray());
List resultList=(List)e1.evaluate();
for(int i=0;i<resultList.size();i++)
{
assertTrue(((Integer)resultList.get(i)).intValue()==c1);
}