views:

180

answers:

1

The ones that stick out and make life usefull.

+1  A: 

Here is one for a testClass with Nunit support.


    Imports Nunit.FrameWork

    Namespace $NAMESPACE$
    ''' 
    ''' A TestClass
    ''' 
    ''' 
     _
    Public Class $CLASSNAME$

#Region " Setup and TearDown "
     ''' 
     ''' Sets up the Tests
     ''' 
     ''' 
      _
     Public Sub Setup()

         End Sub

     ''' 
     ''' Tears down the test. Is executed after the Test is Completed
     ''' 
     ''' 
      _
     Public Sub TearDown()

     End Sub      
#End Region  

#Region " Tests "
                ''' 
     ''' A Test
     ''' 
     ''' 
             _
            Public Sub $Test_Name$()

            End Sub
#End Region

    End Class
End Namespace
chrissie1