Im having some large classes that use lots of memory under test. My tests are data-driven, meaning i use the pattern recommended by Microsoft for running a test function for each line in a csv file. Hence i cannot use a [TestCleanUp] dispose pattern, and must rely on the [ClassCleanup] for disposing and null'ing my large test members.
My theory is that MSTest keeps all test classes until the entire test run finises, and therefore the [ClassCleanup] are never called while jumping from one test class to the next. And so the GC never kicks, in resulting in OutOfMemoryException.
I see no way around this with the MSTest framework. Had i been able to access the TestContext's result list and post my per-csv-line test result, so it will be shown in Visual Studio 2010 Test Result List, i would be happy. Then i could handle the threading of the test myself; i could dispose my test target when appropriate and i could still have access to a target class's result list in the nice VS integrated sub-results list view.
Please Microsoft, improve the whole TestDriven pattern - specifically the TestContext class.
Does anybody know of a way to use Microsoft.VisualStudio.QualityTools.UnitTestFramework
common functionality to post results to VS result view? There are other sub-dlls of that family installed with VS but i havnt dwelled into it... The problem seems to be that the results are generated as a list of thrown AssertFailedExceptions, and you cannot throw more that once per test, which a data driven test would require...