@Test
public void testBeanDerivedFromGeneric()
throws Exception
{
ConcreteDerivedFromGenericBean bean = new ConcreteDerivedFromGenericBean();
bean.setGenericProperty("generic");
bean.setConcreteField("concrete");
testRoundTripSerialize(bean, new TCompactProtocol.Factory());
}