Creates a fixture for the testedType type and a description

Namespace: MbUnit.Framework
Assembly:  MbUnit.Framework (in MbUnit.Framework.dll)

Syntax

         
 C#  Visual Basic  Visual C++ 
public TypeFixtureAttribute(
	Type testedType,
	string description
)
Public Sub New ( _
	testedType As Type, _
	description As String _
)
public:
TypeFixtureAttribute(
	Type^ testedType, 
	String^ description
)

Parameters

testedType
Type
type to apply the fixture to
description
String
description of the fixture

Remarks

Initializes the attribute with testedType.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptiontestedType is a null reference

See Also