当我使用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使用的模板,所以我不必再这样做了?