show/hide this revision's text 2 added 1216 characters in body

This is not a real answer to you question, but probably a solution to solve the problem.

I use an in-memory implementation of sql lite for my integration tests. I build up the schema and fill the database before each test. The schema creation and initial data filling happens really fast (less then 0.01 seconds per test) because it's an in-memory database.

Why do you use a physical database?

Edit: response to answer about question above:

1.) Because I migrated my schema and data directly from SQL Server 2005 and I want it to persist in source control.

  • I recommend to store a file with the database schema in and a file or script that creates the sample data in source control. You can generate the file using sql server studion management express, you can generate it from your NHibernate mappings or you can use a tool like sql compare and you can probably find other solutions for this when you need it. Plain text files are stored easier in version control systems then complete binary database files.

2.) Does something about the in-memory SQLite engine differ such that it would resolve this difficulty?

  • It might solve your problems because you can recreate your database before each test. Your database under test will be in a the state you expect it to be before each test is executed. A benefit of that is there is no need to roll back your transactions, but I have run similar test with in memory sqllite and it worked as aspected.
show/hide this revision's text 1

I use an in-memory implementation of sql lite for my integration tests. I build up the schema and fill the database before each test. The schema creation and initial data filling happens really fast (less then 0.01 seconds per test) because it's an in-memory database.

Why do you use a physical database?