I am using Entity Framework 4.1 for database access and would like to Unit Test the following code:
// Get all the entities including children
using (MyContext context = new MyContext())
{
return context.EmployeeProfiles.Include("EmployeeProperties").ToList();
}
I am using Moles to mole out the database dependency however I am stuck. Which point in the Entity Framework I should begin to mole out.
I was following this example but it is for LINQ-To-SQL.
I was also thinking of debugging/tracing the Entity Framework to figure out which function to intercept out before the call to the database is made. However, it seems that there is no source code available for Entity Framework 4.1 to trace with. See discussion.
Can anyone guide me to which function(s) I should be moling out in the DbContext so I can get a list of EmployeeProfiles back?
GetFullEmployeeProfilesand you want to write a unit test as to confirm that you actually get populated 'EmployeeProfiles' with 'EmployeeProperties' back as well. – Rudi Sep 29 '11 at 9:59