| 8 | // ============================================================================= |
| 9 | |
| 10 | class BatchGuardTest : public ::testing::Test { |
| 11 | protected: |
| 12 | int flushCount = 0; |
| 13 | BatchGuard guard{[this]() { ++flushCount; }}; |
| 14 | }; |
| 15 | |
| 16 | // --- requestFlush without batch window --- |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected