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