| 444 | // ============================================================================= |
| 445 | |
| 446 | Subcase::Subcase(const char* name, const char* file, int line) FL_NOEXCEPT |
| 447 | : mSignature{name, file, line} |
| 448 | , mEntered(false) { |
| 449 | mEntered = TestContext::instance().enterSubcase(mSignature); |
| 450 | } |
| 451 | |
| 452 | Subcase::~Subcase() FL_NOEXCEPT { |
| 453 | if (mEntered) { |
nothing calls this directly
no test coverage detected