| 2487 | } |
| 2488 | |
| 2489 | void test_case_exception(const TestCaseException& e) override { |
| 2490 | DOCTEST_LOCK_MUTEX(mutex) |
| 2491 | |
| 2492 | xml.scopedElement("Exception") |
| 2493 | .writeAttribute("crash", e.is_crash) |
| 2494 | .writeText(e.error_string.c_str()); |
| 2495 | } |
| 2496 | |
| 2497 | void subcase_start(const SubcaseSignature& in) override { |
| 2498 | xml.startElement("SubCase") |
nothing calls this directly
no test coverage detected