Assert.assertThat((Long) obj2[1], is(10000000000L));
}
@Test(expected = ClassCastException.class)
public void testIdTypeError() {
ApplicationContext context = new XmlApplicationContext("firefly2.xml");
CollectionService collectionService = context
.getBean("collectionService");
for (Integer i : collectionService.getSet())
i++;
}