Is it possible using xUnit to run a test but to essentially only log the result rather than having any failures fail the whole test run?
Our use case is around long running re-factoring. We may have a test or tests that will continue to fail until the re-factoring is complete. We'd like to use the output of the test(s) to demonstrate progress being made on the re-factoring and then eventually when all the refactoring is complete use the test to enforce that we don't have any regressions.
So we'd need the test to either just log the result but not fail the test run or for it produce a warning or something similar rather than a failure.