I'd like to print a status message for each test class I run.
For example,
"Running Test_Money..."
However, if I a place a std::cout in either the constructor or in setup this message is repeated for each test in class Money (I know this is what should happen). And I only want one initial messsage. What should I do?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Let me re-state my question.
I checked the docs and notices BriefTestProgressListener. However, this class prints the status for each test. I'd like to print the status for each class (and not for each test in that class). Is it possible?
Thanks.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'd like to print a status message for each test class I run.
For example,
"Running Test_Money..."
However, if I a place a std::cout in either the constructor or in setup this message is repeated for each test in class Money (I know this is what should happen). And I only want one initial messsage. What should I do?
Let me re-state my question.
I checked the docs and notices BriefTestProgressListener. However, this class prints the status for each test. I'd like to print the status for each class (and not for each test in that class). Is it possible?
Thanks.