Reputation: 457
When using ReSharper's built in test runner with FluentAssertions a test failing will produce an output message that you can specify within the test. In some cases having this output appear on a passing test would still be useful, mostly to help identify a false positive.
Is there a way to get that output with passing tests? I'm using the XUnit.net testing framework if this helps.
Upvotes: 0
Views: 206
Reputation: 8899
That output message is part of the XUnit-specific assertion exception that FluentAssertions throws whenever an assertion fails. If the test is succesful, I can't throw that exception without failing the test. Plus, dumping that message to the output doesn't work either. XUnit 2 no longer captures console output.
Upvotes: 3