Does the unit test hook support a unit-style reporting framework?

Planning the transition to the Catch unit test framework for C ++ .

I want the test results in a unit report format, and I just want to confirm if it has this capability.

+3


source to share


2 answers


Yes it is.

You can create a JUnit compliant XML report by adding



-r junit

      

at the command line of your compiled Catch test suite (see Integration with Build Systems ).

+3


source


A small amount of reading shows:



Other main functions

JUnit xml output is supported for integration with third party tools such as CI servers.

+1


source







All Articles