We use the Moq framework and FluentAssertions in oue tests. At the moment we use both to do our assertions, e.g. we will verify that methods etc. on mocks are called. It would be great, if we could do this within the FluentAssertions framework as we like to do multiple assertions in one method and often use either FluentAssertions And()
to chain these assertions together or the assertion scope so that the results of all assertions can be seen in one go.
So my question is: Is there some way we could be doing this in the current fluent assertions framework, so we could either use the And()
or the assertion scope to work with it?
Or is there away that these verify actions can be used to work thise way in some wrapped form?
Support out of the box would be great.