Table of Contents

Interface ITestActAwaiter

Namespace
Mokkit.Act
Assembly
Mokkit.dll

Provides an awaiter for act operations, enabling async/await support for act chains. This interface implements the awaiter pattern to allow direct awaiting of Mokkit.Act.ITestAct instances.

public interface ITestActAwaiter : INotifyCompletion

Implements

Properties

IsCompleted

Gets a value indicating whether the act operation has completed.

bool IsCompleted { get; }

Property Value

bool

Methods

GetResult()

Gets the result of the act operation. This method is called when the await completes.

void GetResult()