Test empty table/block.
| 612 | |
| 613 | // Test empty table/block. |
| 614 | TEST(Harness, Empty) { |
| 615 | for (int i = 0; i < kNumTestArgs; i++) { |
| 616 | Init(kTestArgList[i]); |
| 617 | Random rnd(test::RandomSeed() + 1); |
| 618 | Test(&rnd); |
| 619 | } |
| 620 | } |
| 621 | |
| 622 | // Special test for a block with no restart entries. The C++ leveldb |
| 623 | // code never generates such blocks, but the Java version of leveldb |
nothing calls this directly
no test coverage detected