LevelOfParallelismAttribute
Sets the number of worker threads that may be allocated by the framework
for running tests.
using System;
namespace NUnit.
Framework
{
[
AttributeUsage(
AttributeTargets.
Assembly,
AllowMultiple =
false,
Inherited =
false)]
public sealed class LevelOfParallelismAttribute :
PropertyAttribute
{
public LevelOfParallelismAttribute(
int level)
:
base(
level)
{
}
}
}