Examples of TotalRating


Examples of com.ryp.bo.TotalRating

    public void ratePlace(Place place, Rating rating) {
        place.addRating(rating);
    }

    public TotalRating getTotalRating(Place place) {
        TotalRating totalRating = new TotalRating(place.getRatings());
        return totalRating;
    }
View Full Code Here

Examples of com.ryp.bo.TotalRating

        rating.setComment(ratingComment);
        rating.setRate(Rate.R10);
       
        service.ratePlace(place, rating);
       
        TotalRating totalRating = service.getTotalRating(place);
       
        assertEquals(Rate.R10, totalRating.getRate());
    }
View Full Code Here

Examples of com.ryp.bo.TotalRating

        service.ratePlace(place, rating);

        int avgRate = ((r1.getValue() + r2.getValue() + r3.getValue()) / 3);
        Rate totalRate = Rate.valueOf(avgRate);
       
        TotalRating totalRating = service.getTotalRating(place);
       
        assertEquals(totalRate, totalRating.getRate());
    }
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.