<PackageReference Include="NUnit" Version="3.13.2" />

TestFixtureData

The TestFixtureData class represents a set of arguments and other parameter info to be used for a parameterized fixture. It is derived from TestFixtureParameters and adds a fluent syntax for use in initializing the fixture.
public TestFixtureData(object[] args)

Initializes a new instance of the TestFixtureData class.

public TestFixtureData(object arg)

Initializes a new instance of the TestFixtureData class.

public TestFixtureData(object arg1, object arg2)

Initializes a new instance of the TestFixtureData class.

public TestFixtureData(object arg1, object arg2, object arg3)

Initializes a new instance of the TestFixtureData class.

Marks the test fixture as explicit.

public TestFixtureData Explicit(string reason)

Marks the test fixture as explicit, specifying the reason.

public TestFixtureData Ignore(string reason)

Ignores this TestFixture, specifying the reason.

public TestFixtureData SetArgDisplayNames(string[] displayNames)

Sets the list of display names to use as the parameters in the test name.