vote up 1 vote down star

The ones that stick out and make life usefull.

flag

1 Answer

vote up 1 vote down

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
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.