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