vote up 6 vote down star
3

I want to test my Entities that are built using Entity Framework. My concern is that using Entity Framework means directly working with data source. So any ideas how to unit testing Entity Framework based components?

flag

7 Answers

vote up 4 vote down

Apparently it's very hard. Eloquently put by Erik here - http://stackoverflow.com/questions/316897/tdd-and-adonet-entity-framework#answer-316972

link|flag
vote up 0 vote down

How about using a mocking framework? It seems to me that a mocking framework can help you isolaye your business logic from the database.

link|flag
vote up 0 vote down

I agree, a mocking framework is what you're after. You create "mocked" objects that aren't retrieved from your datasource, and you test the data in that object. I personally have been working with Moq, and I like it--there is also Rhinomocks, plus others.

link|flag
vote up 2 vote down

You are going to want to use a Mocking Framework to retrieve mock values rather than hitting the real data. Here are a list of a few mocking frameworks and links to some screencasts to help you get started:

Here are some screencasts on how to get started:

link|flag
You can't do this easily with the EF. Your answer is correct for interfaces or extendable POCOs. – Will Jan 18 at 17:03
vote up 0 vote down

I wonder how Mock would serve instead of database!! But I would give it a try thank you all.

link|flag
vote up 1 vote down

Although the examples might be very simplistic I have attempted to discuss a possible solution to this very issue. It involves separation of concerns and our dear friend Dependency Injection.

http://devblog.petrellyn.com/

Contact me if you want more details.

link|flag
vote up 0 vote down check

I would like to share another input to this. I was able to test Entity Framework based components and application using TypeMock Isolator as well. However it is commercial.

Have a look at this post: Introducing Entity Framework Unit Testing with TypeMock Isolator

link|flag

Your Answer

Get an OpenID
or

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