TestContext.Properties Property
When overridden in a derived class, gets the test properties.
Namespace: Microsoft.VisualStudio.TestTools.UnitTesting
Assembly: Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property Properties As IDictionary
public abstract IDictionary Properties { get; }
public:
virtual property IDictionary^ Properties {
IDictionary^ get () abstract;
}
abstract Properties : IDictionary with get
abstract function get Properties () : IDictionary
Property Value
Type: IDictionary
An IDictionary object that contains key/value pairs that represent the test properties.
Remarks
This member contains the test and run context. Each entry in this collection is a Generic KeyValuePair that contains a key string and an object value. The following is a list of possible TestContext property keys:
TotalAgents
ControllerName
AgentWeighting
AgentName
TestDeploymentDir
AgentId
TestLogsDir
TestDir
TestName
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualStudio.TestTools.UnitTesting Namespace