Enum ParallelScope
Specifies the degree to which a test, and its descendants, may be run in parallel.
Namespace: NUnit.Framework
Assembly: nunit.framework.dll
Syntax
[Flags]
public enum ParallelScope
Fields
Name | Description |
---|---|
All | 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 | Descendants of the test may be run in parallel with one another. Valid on assemblies and classes but not on non-parameterized methods. |
Fixtures | 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 | The test may be run in parallel with others at the same level. Valid on classes and methods but has no effect on assemblies. |