| 5297 | struct JUnitTestMessage |
| 5298 | { |
| 5299 | JUnitTestMessage(const std::string& _message, const std::string& _type, const std::string& _details) |
| 5300 | : message(_message), type(_type), details(_details) {} |
| 5301 | |
| 5302 | JUnitTestMessage(const std::string& _message, const std::string& _details) |
| 5303 | : message(_message), type(), details(_details) {} |
nothing calls this directly
no outgoing calls
no test coverage detected