+4  A: 

Try modifying the file C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplatesCache\CSharp\1033\SimpleUnitTest.zip\SimpleUnitTest.cs (after making a backup, of course). Keep a copy of your updated version elsewhere as this may get overwritten by updates.

FWIW -- I found this by searching for the string using Microsoft.VisualStudio.TestTools.UnitTesting; inside files starting at the top level directory of the VS application directory.

tvanfosson
I tried this and it works when creating a unit test in the Test Project itself. However, if I right click on the method I want to create a test for, it generates the test without my modifications. Any ideas why this might be or how to fix it? Cheers.
AboutDev