问题
I have noticed that the MSTest is launching assemblies tests in separate AppDomain. Are we able to configure MSTest to avoid creating new AppDomain for each test assembly?
回答1:
You can run it with /noisolation - "Run tests within the MSTest.exe process. This choice improves test run speed but increases risk to the MSTest.exe process."
http://msdn.microsoft.com/en-us/library/ms182489.aspx
来源:https://stackoverflow.com/questions/19561802/mstest-visual-studio-2012-and-appdomain