| 55 | class WriteBatchTest {}; |
| 56 | |
| 57 | TEST(WriteBatchTest, Empty) { |
| 58 | WriteBatch batch; |
| 59 | ASSERT_EQ("", PrintContents(&batch)); |
| 60 | ASSERT_EQ(0, WriteBatchInternal::Count(&batch)); |
| 61 | } |
| 62 | |
| 63 | TEST(WriteBatchTest, Multiple) { |
| 64 | WriteBatch batch; |
nothing calls this directly
no test coverage detected