Visual Studio で新しい単体テストを作成するときに使用される不必要に冗長なテンプレートにますます悩まされています (既定の組み込みの単体テスト フレームワークを使用)。それ以外の
public ImportModelStateTest()
{
//
// TODO: Add constructor logic here
//
}
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;
}
}
私は単にしたいです
/// <summary>
///Gets or sets the test context which provides
///information about and functionality for the current test run.
///</summary>
public TestContext TestContext { get; set; }
コンストラクターが必要な場合は追加します。同じことが特別なゲッターとセッターにも当てはまります。また、含まれているサンプルの TestMethod を削除したいと思います。名前を変更する必要があるため、独自のものを最初から作成することもできます。
これらのテスト ファイルの作成に使用されるテンプレートを探しましたが、見つけることができませんでした (主に、コントローラーとビューに使用される T4 テンプレートの近くを探しました)。このテンプレートはどこで変更できますか?