Creates a new JsonUnitTestResultPrinter.
| 5479 | |
| 5480 | // Creates a new JsonUnitTestResultPrinter. |
| 5481 | JsonUnitTestResultPrinter::JsonUnitTestResultPrinter(const char* output_file) |
| 5482 | : output_file_(output_file) { |
| 5483 | if (output_file_.empty()) { |
| 5484 | GTEST_LOG_(FATAL) << "JSON output file may not be null"; |
| 5485 | } |
| 5486 | } |
| 5487 | |
| 5488 | void JsonUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, |
| 5489 | int /*iteration*/) { |
nothing calls this directly
no outgoing calls
no test coverage detected