
NonParallelizable | NUnit Docs
Parallel execution is not supported by all builds of the NUnit Framework, although the attributes are recognized without error in order to allow use in projects that build against multiple targets.
Framework Parallel Test Execution | NUnit Docs
Parallel execution is supported by the NUnit framework on desktop .NET runtimes and .NET Standard 2.0. It is not supported in the .NET Standard 1.6 build, although the attributes are …
Parallelizable | NUnit Docs
Parallelizable Added in NUnit 3.7 The ParallelizableAttribute is used to indicate that a test and/or its descendants may be run in parallel with other tests. By default, no parallel execution takes …
Attributes | NUnit Docs
All NUnit attributes are contained in the NUnit.Framework namespace. Each source file that contains tests must include a using statement for that namespace and the project must …
Class NonParallelizableAttribute | NUnit Docs
Namespace: NUnit. Framework Assembly: nunit.framework.dll Syntax [AttributeUsage(AttributeTargets.Assembly|AttributeTargets.Class|AttributeTargets.Method, …
TestFixture | NUnit Docs
Beginning with NUnit 2.5, the TestFixture attribute is optional for non-parameterized, non-generic fixtures. So long as the class contains at least one method marked with the Test, TestCase or …
TestCase | NUnit Docs
Individual test cases are executed in the order in which NUnit discovers them. This order does not necessarily follow the lexical order of the attributes and will often vary between different …
SetUpFixture | NUnit Docs
Prior to NUnit 3.0, SetUpFixture used the SetUp and TearDown attributes rather than OneTimeSetUp and OneTimeTearDown. The older attributes are no longer supported in …
OneTimeSetUp | NUnit Docs
If a base class OneTimeSetUp method is overridden in the derived class, NUnit will not call the base class OneTimeSetUp method; NUnit does not anticipate usage that includes hiding the …
Engine Parallel Test Execution | NUnit Docs
The NUnit test engine is able to offer a certain degree of parallelization by running the tests in each test assembly in a different Process. This is a separate facility from Framework Parallel …