Examples of CarBuilder


Examples of org.springframework.data.elasticsearch.builder.CarBuilder

  @Test
  public void shouldMapObjectToJsonString() throws IOException {
    //Given

    //When
    String jsonResult = entityMapper.mapToString(new CarBuilder().model(CAR_MODEL).name(CAR_NAME).build());

    //Then
    assertThat(jsonResult, is(JSON_STRING));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.