| 37 | size_t GarbageCollectorTest::Reclaimer::times {0}; |
| 38 | |
| 39 | TEST_F(GarbageCollectorTest, reclaim_if_no_accessor) { |
| 40 | gc.start(); |
| 41 | gc.retire({}); |
| 42 | gc.stop(); |
| 43 | ASSERT_EQ(1, Reclaimer::times); |
| 44 | } |
| 45 | |
| 46 | TEST_F(GarbageCollectorTest, wait_reclaim_on_destroy) { |
| 47 | { |
nothing calls this directly
no test coverage detected