| 35 | } |
| 36 | |
| 37 | void TestReporter::submitDisabled(const std::string& suite, |
| 38 | const std::string& name, |
| 39 | const std::string& skipReason, |
| 40 | bool isStrict) { |
| 41 | const TestReport report = {.result = TestResult::Disable, .message = skipReason}; |
| 42 | submitReport(suite, name, report, isStrict); |
| 43 | } |
| 44 | |
| 45 | void TestReporter::submitFailure(const std::string& suite, |
| 46 | const std::string& name, |