| 5762 | } |
| 5763 | |
| 5764 | struct JUnitTestMessage |
| 5765 | { |
| 5766 | JUnitTestMessage(const std::string& _message, const std::string& _type, const std::string& _details) |
| 5767 | : message(_message), type(_type), details(_details) {} |
| 5768 | |
| 5769 | JUnitTestMessage(const std::string& _message, const std::string& _details) |
| 5770 | : message(_message), type(), details(_details) {} |
| 5771 | |
| 5772 | std::string message, type, details; |
| 5773 | }; |
| 5774 | |
| 5775 | struct JUnitTestCase |
| 5776 | { |
nothing calls this directly
no outgoing calls
no test coverage detected