Table of Contents

Enum ParallelScope

Namespace
NUnit.Framework
Assembly
nunit.framework.dll

Specifies the degree to which a test, and its descendants, may be run in parallel.

[Flags]
public enum ParallelScope

Fields

All = Self | Children

The test and its descendants may be run in parallel with others at the same level. Valid on classes and parameterized methods. For assemblies it is recommended to use Children instead, as Self has no effect on assemblies.

Children = 256

Descendants of the test may be run in parallel with one another. Valid on assemblies and classes but not on non-parameterized methods.

Fixtures = 512

Descendants of the test down to the level of TestFixtures may be run in parallel with one another. Valid on assemblies and classes but not on methods.

Self = 1

The test may be run in parallel with others at the same level. Valid on classes and methods but has no effect on assemblies.