}
@Test
public void testProtectedNonDefaultConstructorPojo() {
ProtectedNonDefaultConstructorPojo pojo = factory
.manufacturePojo(ProtectedNonDefaultConstructorPojo.class);
Assert.assertNotNull("The pojo cannot be null!", pojo);
Assert.assertNotNull("The string attribute cannot be null!",
pojo.getFirstName());
Assert.assertTrue("The int field cannot be zero!",
pojo.getIntField() != 0);
}