那些突出并使生活变得有用的人。
问问题
298 次
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 回答