In my projects, I follow repository pattern in order to easily unit test my ASP.NET MVC app. This allows me to easily mock the objects.
However, I am not testing the Repository logic by this way at all.
For instance, see the below blog post:
How to Work With Generic Repositories on ASP.NET MVC and Unit Testing Them By Mocking
This is what I do and how I test my ASP.NET MVC App.
What do you think the best way of testing repositories which uses DbContext class to reach out the data?
- Directly getting data from database? (I think this would be the worst but I wonder your thopughts)
- Should I create a fake databse and fill it in with dummy data and point EF to connect that database?
And any other approach you might suggest.
EDIT:
I am using EF 4.2 here.