(t *testing.T)
| 757 | } |
| 758 | |
| 759 | func TestNoDecoder(t *testing.T) { |
| 760 | var test interface{} = &NoDecoder{} |
| 761 | if _, ok := test.(unmarshalFaster); ok { |
| 762 | require.FailNow(t, "NoDecoder should not have a UnmarshalJSONFFLexer") |
| 763 | } |
| 764 | } |
| 765 | |
| 766 | func TestNoEncoder(t *testing.T) { |
| 767 | var test interface{} = &NoEncoder{} |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…