如何更改Visual Studio用于创建MSTest单元测试的模板?

时间:2012-02-15 07:56:59

标签: c# visual-studio visual-studio-2010 mstest

  

可能重复:
  Change Default MsTest Unit Test Wizard Template

当我使用Visual Studio 2010中的单元测试向导时,它会生成一个新的测试类,其代码如下:

private TestContext testContextInstance

/// <summary>
///Gets or sets the test context which provides
///information about and functionality for the current test run.
///</summary>
public TestContext TestContext 
{
  get
  {
    return testContextInstance;
  }
  set
  {
    testContextInstance = value;
  }
}

#region Additional test attributes
//a commented chunk of code here
#endregion

由于我很少使用TestContext和测试/类初始化,通常我首先要删除这个文本块。有没有办法找到并更改VS2010使用的模板,所以我不必再这样做了?

0 个答案:

没有答案