| 5773 | }; |
| 5774 | |
| 5775 | struct JUnitTestCase |
| 5776 | { |
| 5777 | JUnitTestCase(const std::string& _classname, const std::string& _name) |
| 5778 | : classname(_classname), name(_name), time(0), failures() {} |
| 5779 | |
| 5780 | std::string classname, name; |
| 5781 | double time; |
| 5782 | std::vector<JUnitTestMessage> failures, errors; |
| 5783 | }; |
| 5784 | |
| 5785 | void add(const std::string& classname, const std::string& name) { |
| 5786 | testcases.emplace_back(classname, name); |
nothing calls this directly
no outgoing calls
no test coverage detected