@Test
public void testMockerForInterface() {
// Trying to create an interface class should thrown an instantiation
// exception
InterfacePojo pojo = factory.manufacturePojo(InterfacePojo.class);
Assert.assertNull("The interface pojo should be null!", pojo);
}