Package sample.data.jpa.domain

Examples of sample.data.jpa.domain.Hotel


        .get(0);
    assertThat(city.getName(), is("Atlanta"));

    Page<HotelSummary> hotels = this.repository.findByCity(city, new PageRequest(0,
        10, Direction.ASC, "name"));
    Hotel hotel = this.repository.findByCityAndName(city, hotels.getContent().get(0)
        .getName());
    assertThat(hotel.getName(), is("Doubletree"));

    List<RatingCount> counts = this.repository.findRatingCounts(hotel);
    assertThat(counts, hasSize(1));
    assertThat(counts.get(0).getRating(), is(Rating.AVERAGE));
    assertThat(counts.get(0).getCount(), is(greaterThan(1L)));
View Full Code Here

TOP

Related Classes of sample.data.jpa.domain.Hotel

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.