()
| 70 | } |
| 71 | |
| 72 | func testZstdCompress() error { |
| 73 | for _, s := range compressTestcases { |
| 74 | if err := testZstdCompressSingleCase(s); err != nil { |
| 75 | return err |
| 76 | } |
| 77 | } |
| 78 | return nil |
| 79 | } |
| 80 | |
| 81 | func testZstdCompressSingleCase(s string) error { |
| 82 | var buf bytes.Buffer |
no test coverage detected
searching dependent graphs…