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

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


  }

  @Test
  public void testMapPojoWithMultiInterfaces() {

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

TOP

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

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.