| 326 | |
| 327 | void NUnitTest::TTestBase::RunAfterTest(std::function<void()> f) { |
| 328 | with_lock (AfterTestFunctionsLock_) { |
| 329 | AfterTestFunctions_.emplace_back(std::move(f)); |
| 330 | } |
| 331 | } |
| 332 | |
| 333 | bool NUnitTest::TTestBase::CheckAccessTest(const char* test) { |
nothing calls this directly
no test coverage detected