<PackageReference Include="NUnit" Version="3.2.1" />

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