| 245 | } |
| 246 | |
| 247 | TEST(TestBinaryBitBlockCounter, NextAndWord) { |
| 248 | CheckBinaryBitBlockOp<detail::BitBlockAnd>( |
| 249 | [](BinaryBitBlockCounter* counter) { return counter->NextAndWord(); }); |
| 250 | } |
| 251 | |
| 252 | TEST(TestBinaryBitBlockCounter, NextOrWord) { |
| 253 | CheckBinaryBitBlockOp<detail::BitBlockOr>( |
nothing calls this directly
no test coverage detected