I need to enforce TestClass order when executing tests with MSTest.
The order of TestClasses and tests within each class can be random, but MSTest should not pick a test from another TestClass until it is done executing ClassInitialize, all tests in the class, and ClassCleanup.
I have global AssemblyInitialize and AssemblyCleanup, therefore the following does not work, because it initializes the assembly for each test:
MSTest.exe /testcontainer:MyUnitTests.dll /resultsfile:report.trx /test:TestClass1 /test:TestClass2