using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tests.CoreTests.Attributes { /// /// Indicates relative priority of tests for execution. Tests with the same /// priority are run in alphabetical order. /// /// Tests with no priority attribute /// are assigned a priority of , /// unless the class has a . /// [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)] public class PriorityAttribute : Attribute { public PriorityAttribute(int priority) { Priority = priority; } public int Priority { get; private set; } } }