FluentAssertions:在异步方法上使用Should()。NotThrow()

时间:2018-07-24 07:21:01

标签: c# fluent-assertions

正在使用 c#FluentAssertions ,并且我想断言如果我给定的 async 方法没有引发异常。

给定一种同步方法,流畅的断言libray允许我这样断言

 Action action = () => YourSynchronousMethod();
 action.Should().NotThrow<Exception>();

我可以对 async 方法执行相同操作吗?

0 个答案:

没有答案