Package org.zkybase.api.domain.node

Examples of org.zkybase.api.domain.node.ApplicationNode


  private void setUpDependencies() {
  }
 
  @Test
  public void toEntity() {
    ApplicationNode actualEntity = applicationMapper.toEntity(applicationDto);
    assertNotNull(actualEntity);
    assertEquals(APPLICATION_ID, actualEntity.getId());
    assertEquals(APPLICATION_NAME, actualEntity.getName());
  }
View Full Code Here


    assertEquals(APPLICATION_NAME, actualEntity.getName());
  }
 
  @Test
  public void toEntityWithNullDto() {
    ApplicationNode actualEntity = applicationMapper.toEntity(null);
    assertNull(actualEntity);
  }
View Full Code Here

TOP

Related Classes of org.zkybase.api.domain.node.ApplicationNode

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.