<PackageReference Include="NUnit" Version="3.0.0-rc" />

TestFixtureParameters

The TestCaseParameters class encapsulates method arguments and other selected parameters needed for constructing a parameterized test case.
public Type[] TypeArgs { get; }

Type arguments used to create a generic fixture instance

Default Constructor creates an empty parameter set

public TestFixtureParameters(Exception exception)

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

public TestFixtureParameters(object[] args)

Construct a parameter set with a list of arguments

Construct a ParameterSet from an object implementing ITestCaseData