@Test
public void testMockerForAbstractClassWithConcreteSpecified() {
// Trying to create an abstract class with a specified concrete
// implementation should be fine
strategy.addSpecific(AbstractTestPojo.class, ConcreteTestPojo.class);
AbstractTestPojo pojo = factory.manufacturePojo(AbstractTestPojo.class);
Assert.assertNotNull(
"The abstract pojo should not be null since a concrete impl has been specified",
pojo);
strategy.removeSpecific(AbstractTestPojo.class);
}