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

NUnit.Framework.TestFixtureAttribute

Marks the class as a TestFixture.
namespace NUnit.Framework { public class TestFixtureAttribute : NUnitAttribute, IFixtureBuilder2, IFixtureBuilder, ITestFixtureData, ITestData { public string TestName { get; set; } public RunState RunState { get; } public object[] Arguments { get; } public IPropertyBag Properties { get; } public Type[] TypeArgs { get; set; } public string Description { get; set; } public string Author { get; set; } public Type TestOf { get; set; } public string Ignore { get; set; } public string Reason { get; set; } public string IgnoreReason { get; set; } public bool Explicit { get; set; } public string Category { get; set; } public TestFixtureAttribute(); public TestFixtureAttribute(params object[] arguments); public IEnumerable<TestSuite> BuildFrom(ITypeInfo typeInfo); public IEnumerable<TestSuite> BuildFrom(ITypeInfo typeInfo, IPreFilter filter); } }