1

際立って生活を便利にするもの。

4

2 に答える 2

1

Nunit をサポートする testClass の例を次に示します。


    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
于 2008-08-26T08:36:59.720 に答える
0

MSTest テストクラス。私のテストクラスの基本が好きです。VSによって作成されたものとは異なります。

Imports Microsoft.VisualStudio.TestTools.UnitTesting

<TestClass()> _
Public Class $ClassName$
    $END$
End Class

$Classname「拡張子なしの現在のファイル名」マクロです。

于 2012-02-10T10:46:48.887 に答える