Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Pluggable interface that is used to execute code in the test execution framework.
Namespace: Microsoft.VisualStudio.TestTools.Execution
Assembly: Microsoft.VisualStudio.QualityTools.ExecutionCommon (in Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll)
Syntax
'Declaration
Public Interface ITestExecutionPlugin
public interface ITestExecutionPlugin
public interface class ITestExecutionPlugin
type ITestExecutionPlugin = interface end
public interface ITestExecutionPlugin
The ITestExecutionPlugin type exposes the following members.
Methods
| Name | Description | |
|---|---|---|
![]() |
AfterExecutionCompleted | This method is called after all tests have been completed, signifying that the test run is finished,. |
![]() |
AfterTestCompleted | This method is called after the test has completed. |
![]() |
BeforeExecutionStarted | This method is called before a test run execution starts. |
![]() |
BeforeTestStarted | This method is called before a test starts. |
Top
Remarks
Classes that implement this interface will be able to execute on agent computers during test runs. A set of classes could be listed in the run configuration, and they will be executed in the order that is specified.
.gif)