Is there a way to reload the host in between unit tests? My team has a large set of automated unit tests, and some objects happen to continue running in the background causing logs. So, I want a way to be able to ensure every time a test
is run, the application domain is fresh and there are no extrenous objects left around.
The easiest way I can think of doing this is to have the app domain the test is running in be reloaded between every test. Is there a way to do this in the MSTest configuration or to do it in code for the unit test?