Click here to Skip to main content
15,884,836 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to create unit test for the following linq query
C#
public int CalculateRating(string hotelID)
     {
         var RatingQuery = from a in db.tbl_Reviews
                           where a.HotelID == hotelID
                           group a by a.HotelID into g
                           select new
                           {
                               TotalRating = g.Sum(a => a.Rating)
                           };
         int totalRating = Convert.ToInt16(RatingQuery.FirstOrDefault().TotalRating);

        int totalnoofRating = db.tbl_Reviews.Count(n => n.HotelID == hotelID);

        int newrating = (totalRating / totalnoofRating);

        return (newrating);
     }
Posted
Updated 24-Dec-12 1:55am
v3

1 solution

Hi,

Any of the method can be tested against some pre-calculated analysis or based on some possibility.

Here you can have manually calculated rating for one hotel and your test case will call this function and you can Assert the expected result(that you already know) and the actual return value from the function.

Here you can test CalculateRating function as a unit. you can not test only Linq query as it is stores information in private variable.

Although you can access private variable in unit test using private object.

hope this information helps you,

Best luck.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900