I made a file template for resharper to make it easier to create a TestClass.

It looks like this.

``` Imports Nunit.FrameWork

Namespace $NAMESPACE$ “’ <summary> “’ A TestClass “’ </summary> “’ <remarks></remarks> <TestFixture()> _ Public Class $CLASSNAME$

#Region “ Setup and TearDown “ “’ <summary> “’ Sets up the Tests “’ </summary> “’ <remarks></remarks> <Setup()> _ Public Sub Setup()

        End Sub

    ''' &lt;summary&gt;
     ''' Tears down the test. Is executed after the Test is Completed
      ''' &lt;/summary&gt;
       ''' &lt;remarks&gt;&lt;/remarks&gt;
     &lt;TearDown()&gt; _
      Public Sub TearDown()

    End Sub      

#End Region

#Region “ Tests “ “’ <summary> “’ A Test “’ </summary> “’ <remarks></remarks> <Test()> _ Public Sub $Test_Name$()

           End Sub

#End Region

 End Class

End Namespace``` I also made an xmlFile so you can easily import it into Resharper.

NunitTestFixture.xml