TestPropertyAttribute Class
Establishes a test specific property on a method. This class cannot be inherited.
Assembly: Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
System::Attribute
Microsoft.VisualStudio.TestTools.UnitTesting::TestPropertyAttribute
| Name | Description | |
|---|---|---|
![]() | TestPropertyAttribute(String^, String^) |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | (Inherited from Attribute.) |
![]() | GetHashCode() | (Inherited from Attribute.) |
![]() | GetType() | (Inherited from Object.) |
![]() | IsDefaultAttribute() | (Inherited from Attribute.) |
![]() | Match(Object^) | (Inherited from Attribute.) |
![]() | ToString() | (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | _Attribute::GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr) | (Inherited from Attribute.) |
![]() ![]() | _Attribute::GetTypeInfo(UInt32, UInt32, IntPtr) | (Inherited from Attribute.) |
![]() ![]() | _Attribute::GetTypeInfoCount(UInt32) | (Inherited from Attribute.) |
![]() ![]() | _Attribute::Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr) | (Inherited from Attribute.) |
To see a property, first rebuild the project and then highlight the test in the Test List Editor or the Test View window. The property is viewable in the Properties pane after the project is rebuilt.
This attribute can be specified on a test method. There can be multiple instances of this attribute to specify more than one item.
For more information about how to use attributes, see Extending Metadata Using Attributes.
Legacy Code Example
The following example shows how to access TestProperty properties from within the MyTestMethod() method.
using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Windows.Forms; using System.Reflection; namespace TestProperty { [TestClass] public class TestPropertyTest { [TestMethod()] [TestProperty("MyProperty1", "Big")] [TestProperty("MyProperty2", "Small")] public void MyTestMethod() { // Get the current type Type t = GetType(); MethodInfo mi = t.GetMethod("MyTestMethod"); Type MyType = typeof(TestPropertyAttribute); object[] attributes = mi.GetCustomAttributes(MyType, false); for (int i = 0; i < attributes.Length; i++) { string name = ((TestPropertyAttribute)attributes[i]).Name; string val = ((TestPropertyAttribute)attributes[i]).Value; string mystring = string.Format("Property Name: {0}, Value: {1}", name, val); MessageBox.Show(mystring); } } } }
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.



