| 71 | } |
| 72 | |
| 73 | void JSONPrinter::print_entry(const std::string &name, const std::string &value) |
| 74 | { |
| 75 | print_separator(_first_entry); |
| 76 | |
| 77 | *_stream << R"(")" << name << R"(" : ")" << value << R"(")"; |
| 78 | } |
| 79 | |
| 80 | void JSONPrinter::print_global_header() |
| 81 | { |
no outgoing calls
no test coverage detected