}
@Test
public void testPodamExcludeAnnotation() {
ExcludeAnnotationPojo pojo = factory
.manufacturePojo(ExcludeAnnotationPojo.class);
Assert.assertNotNull("The pojo should not be null!", pojo);
int intField = pojo.getIntField();
Assert.assertTrue("The int field should not be zero!", intField != 0);
Assert.assertNull(
"The other object in the pojo should be null because annotated with PodamExclude!",
pojo.getSomePojo());
}