<PackageReference Include="NUnit" Version="3.0.0-beta-2" />

TestFixtureAttribute

public object[] Arguments { get; }

The arguments originally provided to the attribute

public string Author { get; set; }

The author of this fixture

public IList Categories { get; }

Gets a list of categories for this fixture

public string Category { get; set; }

Gets and sets the category for this fixture. May be a comma-separated list of categories.

public string Description { get; set; }

Descriptive text for this fixture

public string Ignore { get; set; }

Gets or sets the ignore reason. May set RunState as a side effect.

public string IgnoreReason { get; set; }

Gets or sets the ignore reason. May set RunState as a side effect.

public Type TestOf { get; set; }

The type that this fixture is testing

public Type[] TypeArgs { get; set; }

Get or set the type arguments. If not set explicitly, any leading arguments that are Types are taken as type arguments.

Default constructor

public TestFixtureAttribute(object[] arguments)

Construct with a object[] representing a set of arguments. In .NET 2.0, the arguments may later be separated into type arguments and constructor arguments.

public void ApplyToTest(Test test)

Modifies a test by adding a description, if not already set.

public TestSuite BuildFrom(Type type)

Build a fixture from type provided. Normally called for a Type on which the attribute has been placed.