Package ma.glasnost.orika.test.unenhance.SuperTypeTestCaseClasses

Examples of ma.glasnost.orika.test.unenhance.SuperTypeTestCaseClasses.BookDTO


  @Test
  public void testMappingProxyObject() {
   
    Book book = (Book) getSession().load(Book.class, 1L);
    for (int i=0; i < 100; ++i) {
      BookDTO bookDto = mapper.map(book, BookDTO.class);
 
      Assert.assertEquals("The Prophet", bookDto.getTitle());
      Assert.assertEquals("Khalil Gebran", bookDto.getAuthor().getName());
    }
  }
View Full Code Here

TOP

Related Classes of ma.glasnost.orika.test.unenhance.SuperTypeTestCaseClasses.BookDTO

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.