vote up 0 vote down star

I'm looking for a project/tool that will insert data into a database before a test and roll it back after a test has run.

I know that ruby on rails has yaml fixtures, so I was hoping there is a project out there for .net projects.

flag

25% accept rate
Fixtures are a Rails-added feature. Also different from the term 'test fixture' which means a grouping of xUnit tests that share common setup or teardown code. – Gishu Feb 24 at 15:04
That is correct. I found it hard to search for this because of how the word "fixture" is used in .net – Eric Neunaber Feb 24 at 15:32

2 Answers

vote up 0 vote down

I use Sql Server Compact Edition and regenerate a new copy of the database each time (simply copying an initial database is fine) and if used in read only mode multiple tests can share the same database file.

There are a few gotchas, and programmability is not supported but it works well for the basics that I needed it for. It is also surprisingly fast.

link|flag
I've done something similar to that in the past, but the database for this project is probably too large to detach and attach a new copy each time. – Eric Neunaber Feb 24 at 15:33
well if the tests are read only on the db you only need to do it once. you'll serialize all your unit tests that depend on the db otherwise (unless you fancy multiple unit test environments) not to mention dealing with multiple users. – ShuggyCoUk Feb 24 at 15:57
But it might just be that you can't really unit test the database layer, this happens, it's not the end of the world but is a shame – ShuggyCoUk Feb 24 at 15:58
vote up 0 vote down

I've implemented a basic example of Rails-like fixtures for .NET on my blog.

http://www.davidmuto.com/Blog.muto/View/rails-like-fixtures-for-net

Any good?

link|flag

Your Answer

Get an OpenID
or

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