(t *testing.T, valuesIn []super.Value)
| 35 | } |
| 36 | |
| 37 | func roundtrip(t *testing.T, valuesIn []super.Value) { |
| 38 | var buf bytes.Buffer |
| 39 | fuzz.WriteCSUP(t, valuesIn, &buf) |
| 40 | valuesOut, err := fuzz.ReadCSUP(buf.Bytes(), nil) |
| 41 | require.NoError(t, err) |
| 42 | fuzz.CompareValues(t, valuesIn, valuesOut) |
| 43 | } |
| 44 | |
| 45 | func TestCSUPBatchBug(t *testing.T) { |
| 46 | var b bytes.Buffer |
no test coverage detected