We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The simplest way to activate the parallel feature in NUnit is by doing so at an assembly level.
Open your AssemblyInfo.cs file and add the following line:
AssemblyInfo.cs
[assembly: Parallelizable(ParallelScope.Fixtures)]
The above line of code will make all fixture classes to run in parallel.