ParallelScopeHelper
namespace NUnit.Framework.Internal.Execution
{
internal static class ParallelScopeHelper
{
public static bool HasFlag(this ParallelScope scope, ParallelScope value)
{
return (scope & value) != ParallelScope.Default;
}
}
}