Closed maca88 closed 2 years ago
Fixes the following code:
var result = false; Assert.That<bool>(() => result = SimpleFile.Write(""), Throws.Nothing);
to be generated as:
var result = false; Assert.That<Task<bool>>(async () => result = await (SimpleFile.WriteAsync("")), Throws.Nothing);
where currently the generic argument for Assert.That is not wrapped into a Task<>.
Assert.That
Task<>
Fixes the following code:
to be generated as:
where currently the generic argument for
Assert.That
is not wrapped into aTask<>
.