| 55 | static const TString DATA2 = "cn8wk2bd9vb3vdfif83g1ks94bfiovtwv"; |
| 56 | |
| 57 | Y_UNIT_TEST(Compress) { |
| 58 | TUnbufferedFileOutput o(ZDATA); |
| 59 | TZLibCompress c(&o, ZLib::ZLib); |
| 60 | |
| 61 | c.Write(DATA.data(), DATA.size()); |
| 62 | c.Finish(); |
| 63 | o.Finish(); |
| 64 | } |
| 65 | |
| 66 | Y_UNIT_TEST(Decompress) { |
| 67 | TTempFile tmpFile(ZDATA); |
nothing calls this directly
no test coverage detected