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.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

The respository is you entry point to the database so the only way to test it is to use integration test and work on a test database. You can use transactional tests where each test will setup transaction and rollback at the end of the test to keep test data same for all tests.

link|improve this answer
I see. So, the only way is to clone the database structure, seed it with fake data and point EF to use that database on the test project. Did I get that right? – tugberk Dec 26 '11 at 12:32
Yes. Thats the correct approach to test repositories. – Ladislav Mrnka Dec 26 '11 at 12:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.