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

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


  private static final PodamFactory factory = new PodamFactoryImpl(strategy);

  @Test
  public void testListPojoWithMultiInterfaces() {

    MultipleInterfacesListPojo pojo = factory.manufacturePojo(
        MultipleInterfacesListPojo.class, String.class);
    Assert.assertNull("Interface POJO cannot be constructed", pojo);
    List<Class<?>> accessed = strategy.getAccessed();
    Assert.assertEquals(1, accessed.size());
    Assert.assertEquals(MultipleInterfacesListPojo.class, accessed.get(0));
View Full Code Here

TOP

Related Classes of uk.co.jemos.podam.test.dto.MultipleInterfacesListPojo

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.