标签: c# fluent-assertions
正在使用 c#FluentAssertions ,并且我想断言如果我给定的 async 方法没有引发异常。 给定一种同步方法,流畅的断言libray允许我这样断言
Action action = () => YourSynchronousMethod(); action.Should().NotThrow<Exception>();
我可以对 async 方法执行相同操作吗?