Assert.assertNotNull(pojo);
}
@Test
public void testFactoryInstantiationWithGenerics() {
FactoryInstantiablePojo pojo = factory.manufacturePojo(
FactoryInstantiablePojo.class, Date.class);
Assert.assertNotNull(pojo);
Object value = pojo.getTypedValue();
Assert.assertNotNull(value);
Assert.assertEquals(Date.class, value.getClass());
}