| 92 | }; |
| 93 | |
| 94 | TEST_F(CompressWriterTest, AbleToInputNull) { |
| 95 | compressWriter.write(NULL, 0); |
| 96 | EXPECT_EQ((uint64_t)0, writer.getDataSize()); |
| 97 | } |
| 98 | |
| 99 | TEST_F(CompressWriterTest, AbleToCompressEmptyData) { |
| 100 | char input[10] = {0}; |
nothing calls this directly
no test coverage detected