| 16 | // --- requestFlush without batch window --- |
| 17 | |
| 18 | TEST_F(BatchGuardTest, RequestFlush_NoBatch_FlushesImmediately) { |
| 19 | guard.requestFlush(); |
| 20 | EXPECT_EQ(flushCount, 1); |
| 21 | } |
| 22 | |
| 23 | TEST_F(BatchGuardTest, RequestFlush_NoBatch_MultipleCallsFlushEachTime) { |
| 24 | guard.requestFlush(); |
nothing calls this directly
no test coverage detected