(t *testing.T)
| 54 | } |
| 55 | |
| 56 | func TestZstdCompressSerial(t *testing.T) { |
| 57 | t.Parallel() |
| 58 | |
| 59 | if err := testZstdCompress(); err != nil { |
| 60 | t.Fatal(err) |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | func TestZstdCompressConcurrent(t *testing.T) { |
| 65 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…