I have certain tests that are basically run in two modes. One mode runs against minimal data, these are intended to be run after every commit. The other mode runs against extensive data, these are intended to be run nightly.
Right now, I'm using the vsmdi file to split my tests into different lists named per commit and nightly, and my build server calls them through the command line using the vsmdi file and the test list name. For this to work, I have to make two different [TestMethod] functions, one for the per commit mode and one for the nightly mode. Then I of course assign them to one of the two lists.
I thought this was a little tedious.. I know you're not allowed to pass parameters into your test methods, but is there a way to configure the test class so that each test understands what mode it's trying to run in? This configuration needs to be passed through the command line somehow so the build server works, and it would be nice if I could also configure visual studio to be in one mode or the other, or both, at any given point so the test running keyboard shortcuts work right.