Table of Contents

Class ParameterizedFixtureSuite

Namespace
NUnit.Framework.Internal
Assembly
nunit.framework.dll

ParameterizedFixtureSuite serves as a container for the set of test fixtures created from a given Type using various parameters.

public class ParameterizedFixtureSuite : TestSuite, ITest, IXmlNodeBuilder, IComparable, IComparable<Test>
Inheritance
ParameterizedFixtureSuite
Implements
Inherited Members

Constructors

ParameterizedFixtureSuite(ITypeInfo)

Initializes a new instance of the ParameterizedFixtureSuite class.

public ParameterizedFixtureSuite(ITypeInfo typeInfo)

Parameters

typeInfo ITypeInfo

The ITypeInfo for the type that represents the suite.

ParameterizedFixtureSuite(ParameterizedFixtureSuite, ITestFilter)

Creates a copy of the given suite with only the descendants that pass the specified filter.

public ParameterizedFixtureSuite(ParameterizedFixtureSuite suite, ITestFilter filter)

Parameters

suite ParameterizedFixtureSuite

The ParameterizedFixtureSuite to copy.

filter ITestFilter

Determines which descendants are copied.

Properties

TestType

Gets a string representing the type of test

public override string TestType { get; }

Property Value

string

Methods

Copy(ITestFilter)

Creates a filtered copy of the test suite.

public override TestSuite Copy(ITestFilter filter)

Parameters

filter ITestFilter

Determines which descendants are copied.

Returns

TestSuite