(t *testing.T)
| 303 | } |
| 304 | |
| 305 | func TestTextPlainDecoder_Decode_String(t *testing.T) { |
| 306 | decoder := makeTextDecoder() |
| 307 | var value string |
| 308 | |
| 309 | err := decoder.Decode(&value) |
| 310 | |
| 311 | assert.NoError(t, err) |
| 312 | assert.Equal(t, testString, value) |
| 313 | } |
| 314 | |
| 315 | func TestTextPlainDecoder_Decode_Bytes(t *testing.T) { |
| 316 | decoder := makeTextDecoder() |
nothing calls this directly
no test coverage detected