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

TestFixture

public class TestFixture : TestSuite
TestFixture is a surrogate for a user test fixture class, containing one or more tests.
using System; namespace NUnit.Framework.Internal { public class TestFixture : TestSuite { public TestFixture(Type fixtureType) : base(fixtureType) { CheckSetUpTearDownMethods(typeof(OneTimeSetUpAttribute)); CheckSetUpTearDownMethods(typeof(OneTimeTearDownAttribute)); CheckSetUpTearDownMethods(typeof(SetUpAttribute)); CheckSetUpTearDownMethods(typeof(TearDownAttribute)); } } }