提问人:chrissie1 提问时间:8/26/2008 最后编辑:Communitychrissie1 更新时间:2/10/2012 访问量:305
您是否有任何推荐的 resharper for VB.Net 文件模板
Do you have any recommended File templates for resharper for VB.Net
答:
1赞
chrissie1
8/26/2008
#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
0赞
Boris Callens
2/10/2012
#2
MSTest 测试类。我喜欢我的 testclass basic。不像 VS 创建的那个。
Imports Microsoft.VisualStudio.TestTools.UnitTesting
<TestClass()> _
Public Class $ClassName$
$END$
End Class
$Classname
是“不带扩展名的当前文件名”宏。
评论