Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SetupAsync and StepAsync methods to Report<TOwner> #837

Closed
YevgeniyShunevych opened this issue Apr 30, 2024 · 0 comments
Closed

Add SetupAsync and StepAsync methods to Report<TOwner> #837

YevgeniyShunevych opened this issue Apr 30, 2024 · 0 comments
Assignees
Labels
Milestone

Comments

@YevgeniyShunevych
Copy link
Member

YevgeniyShunevych commented Apr 30, 2024

In addition to Setup and Step methods of Report<TOwner> new async method versions are added:

public Task SetupAsync(string message, Func<TOwner, Task> function);

public Task<TResult> SetupAsync<TResult>(string message, Func<TOwner, Task<TResult>> function);

public Task StepAsync(string message, Func<TOwner, Task> function);

public Task<TResult> StepAsync<TResult>(string message, Func<TOwner, Task<TResult>> function);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

No branches or pull requests

1 participant