I am trying to use Fluent Assertions on C# outside of test frameworks. Is there any way I could cast an FA check to bool? For example I need to achieve something like:
bool result= a.Should().Be(0);
If passes then result = true; if fails, result = false.
Is there any way of casting or extracting a bool
result from the assertion?