Here is a short snippet that saves me a lot of time. It simply creates a
test method with the correct attributes and stuff. Simply but useful –
and now you don’t have to write it.
<?xml version=”1.0” encoding=”utf-8” ?>
<![CDATA[<TestMethod()> _
public void should_$methodName$()
{
// Arrange
// Act
// Assert
Assert.Fail("Implement test");
}]]>