diff --git a/snippets/csharp/csharp.json b/snippets/csharp/csharp.json index 119e30c0..7f7f01b3 100644 --- a/snippets/csharp/csharp.json +++ b/snippets/csharp/csharp.json @@ -520,5 +520,27 @@ "}" ], "description": "Create new class" + }, + "MSTest Test Class": { + "prefix": "tc", + "body": [ + "[TestClass]", + "public sealed class ${1:ClassName}Test", + "{", + "\t$0", + "}" + ], + "description": "create mstest test class" + }, + "MSTest Test Method": { + "prefix": "tm", + "body": [ + "[TestMethod]", + "public void ${1:TestName}()", + "{", + "\t$0", + "}" + ], + "description": "create mstest test method" } }