Is there a possibility to get back a list of failed and passed objects in Fluent Assertions?
E.g.
var results = actual.Should().BeEquivalentTo(tc.Expected);
I am trying to get all of the results so that I could build an HTML report, which would display the results there.
Can this be done?