Examples of ExcludeAnnotationPojo


Examples of uk.co.jemos.podam.test.dto.ExcludeAnnotationPojo

  }

  @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());

  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.