<PackageReference Include="NUnit" Version="3.0.0-beta-3" />

ActionTargets

public enum 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 } }