vote up 0 vote down star

As in the topic...

I was thinking about something like "in memory changes". On recent blogs by Jaroslaw Kowalski i have found similar approach but i was thinking about sth much simpler

flag
Please provide more context. Perhaps a language tag, link to what "entity framework" is, etc... – Dustin Nov 28 '08 at 23:23

2 Answers

vote up 1 vote down

If the framework consists of (abstract) classes, you can create dummy concrete classes and unittest them.

link|flag
vote up 1 vote down

Unless you are building/modifying the framework itself, you shouldn't need to unit test it.

As for unit testing entity classes you define, I would recommend the following. 1. Create a stub implementation that uses an in memory database. Which will allow you to test class interaction. 2. Design you classes in such a way that business logic does not require the Entity Framework and unit test those directly.

link|flag

Your Answer

Get an OpenID
or

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