IBaseAdapter 接口

定义

提供一个接口,用作自定义测试适配器的基。

public interface class IBaseAdapter
public interface IBaseAdapter
type IBaseAdapter = interface
Public Interface IBaseAdapter
派生

方法

AbortTestRun()

在测试运行过程中发生内部错误时调用。 此方法的行为应与 StopTestRun() 方法类似。

Cleanup()

在测试运行完成时调用。

PauseTestRun()

当用户请求暂停测试运行时调用。

ResumeTestRun()

当用户请求恢复测试运行时调用。

Run(ITestElement, ITestContext)

调用以执行测试用例。

StopTestRun()

当用户请求停止测试运行时调用。

适用于