Create Unit Tests: default template & IDisposable
When using the Create Unit Tests dialog, the generated code doesn't properly call Dispose on my disposable class. Is there a way to modify the code template used by this command?
The style I've developed for dealing with this is to add a member variable to the test class for the target, and put initializaiton of it in a [TestInitialize] method, and call Dispose in the [TestCleanup]. This keep the [TestMethod]'s lean and easy to maintain, and the cleanup method gets called even if the test fails.

