Planning to switch over to the Catch unit test framework for c++.
I need the test results to be in junit report format and I just want to confirm if it has that capability.
Planning to switch over to the Catch unit test framework for c++.
I need the test results to be in junit report format and I just want to confirm if it has that capability.
A small amount of reading reveals:
Other core features
JUnit xml output is supported for integration with third-party tools, such as CI servers.
Yes, it does.
You can generate a JUnit compatible XML report via adding
to the command line of your compiled Catch test suite (cf. Integration with build systems).