In some my project I notice that during executing unit tests under VSTS2008 its VSTestHost's memory consuming grows. As I have very many tests in my solution it leads to OutOfMemroyException eventually. That looks very strange for me as I was sure that MSTest creates a new AppDomain for each unit test. Otherwise how would it reset static fields? But if AppDomain is being created for each test than memory shouldn't leak. But it does.

So the question is: Should VS create AppDomain for each test class or not? If yes than how can I check that it does it. I tried tracing through ProcessExpolorer and Performance snap-in. A value of "Total appdomain unloaded" is always 0 during test run.

link|improve this question

68% accept rate
I'm having the same problem. Did this end up being a "you problem" as the answerers seemed to say? Or was it in fact the test runner? I'm curious. – Peter Seale Feb 24 '11 at 17:32
I've found social.msdn.microsoft.com/Forums/en-US/vststest/thread/… and social.msdn.microsoft.com/Forums/en-US/vststest/thread/… - I'm getting the idea that the few of us who have created a large test suite are experiencing this problem. – Peter Seale Feb 25 '11 at 19:20
feedback

6 Answers

up vote 6 down vote accepted

I don't think the unit test engine creates a new AppDomain for each test. Since creating an AppDomain is a relatively expensive operation, doing so for each test would slow down execution of unit tests considerably!

Visual Studio 2008 uses a seperate executable called vstesthost.exe to run unit tests. VS communicates with vstesthost.exe (how it does this I don't know) to tell it what tests to run. vstesthost.exe returns the execution results to VS which displays those results.

If you are getting OutOfMemoryExceptions when running your unit tests I would say that's a strong indicator that your code under test is actually not cleaning things up. Are you sure that you aren't retaining handles to unmanaged objects/memory? I would recommend running your unit tests under a Performance Analysis (you can do that by finding the unit test under the "Test View", right-clicking on it, and selecting "Create Performance Session"). This might shed some light at least on your object allocations.

link|improve this answer
feedback

MsTest creates one-app domain per Test assembly, unless you are using noisolation, in which case there is no AppDomain Isolation.

If you are seeing leaks, its probably a but in either your test code, or your product code. Make sure you aren't stuffing things into dictionaries and leaving them there.

link|improve this answer
1  
+1, app domain per assembly. But - it also creates a new test class instance per test, so it should actually GC the fields. I have also some memory problems with MS test and I don't know why. I think there are some problems in the test runner. – Stefan Steinegger Apr 26 '10 at 15:08
+1 on test class instance per test. [ClassInitialize] is static. – bryanbcook Jan 9 '11 at 16:12
feedback

I was wrong about having separate AppDomains for each unittest.

Here's evidence: a singleton public class Singleton { public static Singleton Instance = new Singleton();

	private Guid _token;
	private Singleton()
	{
		_token = Guid.NewGuid();
	}

	public Guid Token
	{
		get { return _token; }
	}
}

and two tests:

[TestClass]
public class UnitTest2
{
	[TestMethod]
	public void TestMethod1()
	{
		Console.WriteLine(Singleton.Instance.Token);
	}
}
[TestClass]
public class UnitTest1
{
	[TestMethod]
	public void TestMethod1()
	{
		Console.WriteLine(Singleton.Instance.Token);
	}
}

During executing both tests output the same guid.

link|improve this answer
feedback

Seen the same problem with large test runs. My theory is the following. Memory exhaustion in this case is due to the fact that MSTest test result files are XML. Therefore it needs to keep all the log results in memory until the end of the test run before serializing to disk. Hurray for XML :-)

I have posted this problem as a connect issue a while back and it should have been fixed in MSTest 10 (going 64 bit) but I haven't been able to verify this yet because of all the other problems we have moving to VS2010 and .NET 4.0.

link|improve this answer
feedback

This does not seem to be solved in MSTest 2010. I am experiencing a lot of similar issues like this. Why does garbage collection not work in unit test?

My understanding was that the UT framework took care of disposing of all executed tests, but this does not seem to be the case with some singleton patterns that we have in code.

link|improve this answer
feedback

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...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.