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
}
}