Folks,
My apologies for the novice question. It's probably obvious, please don't laugh :-)
I have unit tests defined for my Visual Studio 2008 solution. These tests are defined in multiple methods, in multiple classes across several files.
I've read in a blog article that depending on the order of execution of tests is wrong; that said, I have to have a pre-execution step before any of these tests gets to run. I.e. I actually want to define an order of execution somehow - i.e. first I create the database; then I test that it's created; then the remaining 50 tests can run in arbitrary order.
Any ideas on how I can do that?