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

ParallelScope

public enum ParallelScope
The ParallelScope enumeration permits specifying the degree to which a test and its descendants may be run in parallel.
using System; namespace NUnit.Framework { [Flags] public enum ParallelScope { None = 0, Self = 1, Children = 2, Fixtures = 4 } }