Table of Contents

Class TestFixtureParameters

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

The TestCaseParameters class encapsulates method arguments and other selected parameters needed for constructing a parameterized test case.

public class TestFixtureParameters : TestParameters, IApplyToTest, ITestFixtureData, ITestData
Inheritance
TestFixtureParameters
Implements
Derived
Inherited Members

Constructors

TestFixtureParameters()

Default Constructor creates an empty parameter set

public TestFixtureParameters()

TestFixtureParameters(ITestFixtureData)

Construct a ParameterSet from an object implementing ITestCaseData

public TestFixtureParameters(ITestFixtureData data)

Parameters

data ITestFixtureData

TestFixtureParameters(Exception)

Construct a non-runnable ParameterSet, specifying the provider exception that made it invalid.

public TestFixtureParameters(Exception exception)

Parameters

exception Exception

TestFixtureParameters(params object[])

Construct a parameter set with a list of arguments

public TestFixtureParameters(params object[] args)

Parameters

args object[]

Properties

TypeArgs

Type arguments used to create a generic fixture instance

public Type[] TypeArgs { get; }

Property Value

Type[]