(t *testing.T)
| 313 | } |
| 314 | |
| 315 | func TestTextPlainDecoder_Decode_Bytes(t *testing.T) { |
| 316 | decoder := makeTextDecoder() |
| 317 | var value []byte |
| 318 | |
| 319 | err := decoder.Decode(&value) |
| 320 | |
| 321 | assert.NoError(t, err) |
| 322 | assert.Equal(t, testString, string(value)) |
| 323 | } |
| 324 | |
| 325 | func TestTextPlainDecoder_Decode_Other(t *testing.T) { |
| 326 | decoder := makeTextDecoder() |
nothing calls this directly
no test coverage detected