Table of Contents

Interface ITestArrangeAwaiter

Namespace
Mokkit.Arrange
Assembly
Mokkit.dll

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

public interface ITestArrangeAwaiter : INotifyCompletion

Implements

Properties

IsCompleted

Gets a value indicating whether the arrange operation has completed.

bool IsCompleted { get; }

Property Value

bool

Methods

GetResult()

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

void GetResult()