| 30 | } |
| 31 | |
| 32 | void TestReporter::submitPass(const std::string& suite, const std::string& name, bool isStrict) { |
| 33 | const TestReport report = {.result = TestResult::Pass, .message = ""}; |
| 34 | submitReport(suite, name, report, isStrict); |
| 35 | } |
| 36 | |
| 37 | void TestReporter::submitDisabled(const std::string& suite, |
| 38 | const std::string& name, |