Condividi tramite


Proprietà TestContext.Properties

Se sottoposto a override in una classe derivata, ottiene le proprietà del test.

Spazio dei nomi:  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

Sintassi

'Dichiarazione
Public MustOverride ReadOnly Property Properties As IDictionary
    Get
public abstract IDictionary Properties { get; }
public:
virtual property IDictionary^ Properties {
    IDictionary^ get () abstract;
}
abstract Properties : IDictionary
abstract function get Properties () : IDictionary

Valore proprietà

Tipo: System.Collections.IDictionary
Oggetto IDictionary contenente le coppie chiave/valore che rappresentano le proprietà del test.

Note

Questo membro contiene il test e il contesto di esecuzione. Ogni voce di questo insieme è una classe KeyValuePair<TKey, TValue> generica contenente una stringa chiave e un valore oggetto. Di seguito viene riportato un elenco delle chiavi di proprietà TestContext possibili:

  • TotalAgents

  • ControllerName

  • AgentWeighting

  • AgentName

  • TestDeploymentDir

  • AgentId

  • TestLogsDir

  • TestDir

  • TestName

Sicurezza di .NET Framework

Vedere anche

Riferimenti

TestContext Classe

Spazio dei nomi Microsoft.VisualStudio.TestTools.UnitTesting

Altre risorse

Using the TestContext Class