Assert.assertTrue("The int value should not be zero!", intValue != 0);
}
@Test
public void testMockerForPojoWithPrivateNoArgConstructor() {
PrivateNoArgConstructorPojo pojo = factory
.manufacturePojo(PrivateNoArgConstructorPojo.class);
Assert.assertNotNull(
"The pojo with private default constructor cannot be null!",
pojo);
}