@Test
public void testMockerForClassWithoutDefaultConstructor() {
// With a no-arg constructor, an instantiation exception will be thrown
NoDefaultConstructorPojo pojo = factory
.manufacturePojo(NoDefaultConstructorPojo.class);
Assert.assertNotNull(
"The pojo with no default constructors must not be null!", pojo);
}