Provides an interface to use as a base for a custom test adapter.
Namespace:  Microsoft.VisualStudio.TestTools.Execution
Assembly:  Microsoft.VisualStudio.QualityTools.ExecutionCommon (in Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll)
Syntax
'Declaration
Public Interface IBaseAdapter
public interface IBaseAdapter
public interface class IBaseAdapter
type IBaseAdapter =  interface end
public interface IBaseAdapter
The IBaseAdapter type exposes the following members.
Methods
| Name | Description | |
|---|---|---|
| .gif) | AbortTestRun | Called when an internal error occurs during a test run. This method should behave similarly to the StopTestRun method. | 
| .gif) | Cleanup | Called when a test run is completed. | 
| .gif) | PauseTestRun | Called when the user requests to pause a test run. | 
| .gif) | ResumeTestRun | Called when the user requests to resume a test run. | 
| .gif) | Run | Called to execute a test case. | 
| .gif) | StopTestRun | Called when the user requests to stop a test run. | 
Top