I am working in an application that is mostly single-thread, single user. There are a few worker threads here and there, and they are only using thread safe objects and clas
I finally used the ordered test method. It works well.
However, I had a hell of a time making it work with the NAnt build. Running only the ordered test list in the build requires using the /testmetadata and /testlist switches in the MSTest invocation block. The documentation on these is sketchy, to use a kind description. I google all over for examples of "MSTest /testmetadata /testlist" to no effect.
The trick is simple, however, and I feel compelled to give it back to the community, in case someone else bumps into the same issue.
Then MSTest runs only the tests listed in the test list you created.
If someone has a better method, I'd like to hear about it!