NUnit.Framework.ParallelizableAttribute
Marks a test assembly, fixture or method that may be run in parallel.
namespace NUnit.Framework
{
public class ParallelizableAttribute : PropertyAttribute, IApplyToContext
{
public ParallelScope Scope { get; }
public ParallelizableAttribute();
public ParallelizableAttribute(ParallelScope scope);
public void ApplyToContext(TestExecutionContext context);
}
}