Package uk.co.jemos.podam.test.dto.pdm3

Examples of uk.co.jemos.podam.test.dto.pdm3.Pdm3PojoGenericsConstructor


  private static final PodamFactory factory = new PodamFactoryImpl();

  @Test
  public void testPdm3Pojo() {

    Pdm3Pojo pojo = factory.manufacturePojo(Pdm3Pojo.class);
    assertNotNull(pojo);
    assertCollection(pojo.getSomething());
    assertCollection(pojo.getDescendants());
    assertCollection(pojo.getAncestors());
  }
View Full Code Here


  }

  @Test
  public void testPdm3PojoGenericsConstructor() {

    Pdm3PojoGenericsConstructor pojo = factory.manufacturePojo(Pdm3PojoGenericsConstructor.class);
    assertNotNull(pojo);
    assertCollection(pojo.getSomething());
    assertCollection(pojo.getDescendants());
    assertCollection(pojo.getAncestors());
  }
View Full Code Here

TOP

Related Classes of uk.co.jemos.podam.test.dto.pdm3.Pdm3PojoGenericsConstructor

Copyright © 2018 www.massapicom. 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.