(self)
| 392 | self.assertEqual(nt.decompressed_size, len(THIS_FILE_BYTES)) |
| 393 | |
| 394 | def test_compress_empty(self): |
| 395 | # output empty content frame |
| 396 | self.assertNotEqual(compress(b''), b'') |
| 397 | |
| 398 | c = ZstdCompressor() |
| 399 | self.assertNotEqual(c.compress(b'', c.FLUSH_FRAME), b'') |
| 400 | |
| 401 | def test_set_pledged_input_size(self): |
| 402 | DAT = DECOMPRESSED_100_PLUS_32KB |
nothing calls this directly
no test coverage detected