ITestExecutionPlugin.BeforeTestStarted, méthode
Cette méthode est appelée avant qu'un test ne démarre.
Espace de noms : Microsoft.VisualStudio.TestTools.Execution
Assembly : Microsoft.VisualStudio.QualityTools.ExecutionCommon (dans Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll)
Syntaxe
'Déclaration
Function BeforeTestStarted ( _
runContext As IDataCollectionRunContext, _
id As TestExecId _
) As Boolean
bool BeforeTestStarted(
IDataCollectionRunContext runContext,
TestExecId id
)
bool BeforeTestStarted(
IDataCollectionRunContext^ runContext,
TestExecId^ id
)
abstract BeforeTestStarted :
runContext:IDataCollectionRunContext *
id:TestExecId -> bool
function BeforeTestStarted(
runContext : IDataCollectionRunContext,
id : TestExecId
) : boolean
Paramètres
- runContext
Type : Microsoft.VisualStudio.TestTools.Execution.IDataCollectionRunContext
Objet IDataCollectionRunContext qui représente le contexte du test.
- id
Type : Microsoft.VisualStudio.TestTools.Common.TestExecId
ID de test.
Valeur de retour
Type : System.Boolean
true si l'agent doit continuer à effectuer le test ; false si l'agent ne doit pas effectuer le test.
[!REMARQUE]
Lorsque false est retourné, l'agent suppose que le plug-in a signalé un échec pour ce test et n'enregistre aucun résultat.Même si false est retourné, le plug-in déclenche encore un événement TestEnd pour ce test.
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
ITestExecutionPlugin Interface