-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Description
The docs I just updated missed updating part of them for async/await. The following code snippet:
[Fact]
public void Test1()
{
TestBuilder builder = new();
builder.AddAsyncTestBlock<TestBlocks.VerifyAwait>()
TestCase test = builder.Build()
test.ExecuteAsync();
}
Should be updated to:
[Fact]
public async Task Test1()
{
TestBuilder builder = new();
builder.AddAsyncTestBlock<TestBlocks.VerifyAwait>()
TestCase test = builder.Build()
await test.ExecuteAsync();
}
Metadata
Metadata
Assignees
Labels
No labels