Search Results for

    Show / Hide Table of Contents

    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.

    • View Source
    In this article
    Back to top Generated by DocFX | Copyright (c) 2018- The NUnit Project - Licensed under CC BY-NC-SA 4.0