Test empty table/block.
| 430 | |
| 431 | // Test empty table/block. |
| 432 | TEST_F(Harness, Empty) { |
| 433 | for (int i = 0; i < kNumTestArgs; i++) { |
| 434 | Init(kTestArgList[i]); |
| 435 | random::PhiloxRandom philox(testing::RandomSeed() + 1, 17); |
| 436 | random::SimplePhilox rnd(&philox); |
| 437 | Test(&rnd); |
| 438 | } |
| 439 | } |
| 440 | |
| 441 | // Special test for a block with no restart entries. The C++ leveldb |
| 442 | // code never generates such blocks, but the Java version of leveldb |
nothing calls this directly
no test coverage detected