Package org.zkybase.cmdb.dto

Examples of org.zkybase.cmdb.dto.Application


    assertNull(actualEntity);
  }
 
  @Test
  public void toDto() {
    Application actualDto = applicationMapper.toDto(applicationEntity);
    assertNotNull(actualDto);
    assertEquals(APPLICATION_ID, actualDto.getId());
    assertEquals(APPLICATION_NAME, actualDto.getName());
  }
View Full Code Here


    assertEquals(APPLICATION_NAME, actualDto.getName());
  }
 
  @Test
  public void toDtoWithNullEntity() {
    Application actualDto = applicationMapper.toDto(null);
    assertNull(actualDto);
  }
View Full Code Here

TOP

Related Classes of org.zkybase.cmdb.dto.Application

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.