We have a batch processing project that utilizes a cache (that relies on static data). The unit tests for this project unfortunately mess up other unit tests within the same solution (because of the static data), so I need to isolate the batch processing unit tests from all other unit tests. The framework/organization that we work in is really strict and all unit tests have to be in the same project. Still all unit tests have to be run in the build. What I need is to ensure that the batch processing unit tests are not run within the same process as other unit tests. Is there any way to do this?
Edit: Specifically, I'm looking for a way to control which process each test is run under. I couldn't find documentation about this, but it seems that all unit test are run under the same instance of the QTAgent32.exe process. There's a setting that determines whether tests are run in the same process (Tools > Options > Test Tools > Test Execution > Keep test ion engine running between tests). However, this is a global setting. What I need is to say is "run these tests in this process, and these tests in this process". Is there any way to do this?