| 41 | static std::string getDescription() { return "Simple progress reporter (one line per test)"; } |
| 42 | |
| 43 | void testCaseStarting(Catch::TestCaseInfo const &testInfo) override { |
| 44 | print_python_version_once(); |
| 45 | auto &os = Catch::cout(); |
| 46 | os << "[ RUN ] " << testInfo.name << '\n'; |
| 47 | os.flush(); |
| 48 | } |
| 49 | |
| 50 | void testCaseEnded(Catch::TestCaseStats const &stats) override { |
| 51 | bool failed = stats.totals.assertions.failed > 0; |
nothing calls this directly
no outgoing calls
no test coverage detected