PriorityAttribute Class

Used to specify the priority of a unit test. This class cannot be inherited.

Namespace:  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

Syntax

'Declaration
<AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple := False)> _
Public NotInheritable Class PriorityAttribute _
    Inherits Attribute
'Usage
Dim instance As PriorityAttribute
[AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple = false)]
public sealed class PriorityAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Method, AllowMultiple = false)]
public ref class PriorityAttribute sealed : public Attribute
public final class PriorityAttribute extends Attribute

Remarks

This attribute is not used by the test system. It is provided to the user for custom purposes.

This attribute can be specified on a method. There can be only one instance of this attribute.

For more information about how to use attributes, see Extending Metadata Using Attributes.

Inheritance Hierarchy

System.Object
  System.Attribute
    Microsoft.VisualStudio.TestTools.UnitTesting.PriorityAttribute

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

PriorityAttribute Members

Microsoft.VisualStudio.TestTools.UnitTesting Namespace