Is use c# FluentAssertions and I want to assert if i given async method does not throw an exception.
Given a synchronous method, fluent assertions libray allows me to assert like this
Action action = () => YourSynchronousMethod();
action.Should().NotThrow<Exception>();
Can I do the same for async methods?