| 202 | }; |
| 203 | |
| 204 | TEST_F(TestBitmapUInt64Reader, Empty) { |
| 205 | for (const int64_t offset : kTestOffsets) { |
| 206 | // Does not access invalid memory |
| 207 | BitmapUInt64Reader reader(nullptr, offset, 0); |
| 208 | ASSERT_EQ(reader.position(), 0); |
| 209 | ASSERT_EQ(reader.length(), 0); |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | TEST_F(TestBitmapUInt64Reader, Small) { |
| 214 | auto buffer = BitmapFromString( |
nothing calls this directly
no test coverage detected