TypeFixture MbUnit Expansion snippet for TypeFixture http://www.mertner.com/confluence/display/MbUnit/TypeFixture typefixture Expansion
namespace Test namespace MbUnitTests type Tested type instanceName instanceName ''' A TypeFixture for the $type$ class. ''' _ Public Class $type$Test #Region "SetUp and TearDown" ''' ''' Initializes the fixture ''' _ Public Sub SetUp(ByVal value As $type$) End Sub ''' ''' Cleans up the fixture ''' _ Public Sub TearDown(ByVal value As $type$) End Sub #End Region #Region "Test cases" _ Public Sub Test(ByVal value As $type$) End Sub #End Region #Region "Providers" _ Public Function Provider$type$() As $type$ Dim $instanceName$ As $type$ = New $type$() Return $instanceName$ End Function #End Region End Class End Namespace ]]>