ActionTargets
The different targets a test action attribute can be applied to
using System;
namespace NUnit.Framework
{
[Flags]
public enum ActionTargets
{
Default = 0,
Test = 1,
Suite = 2
}
}