(t *testing.T)
| 116 | } |
| 117 | |
| 118 | func Test_item_EncodeMsg_WriterErrors(t *testing.T) { |
| 119 | t.Parallel() |
| 120 | |
| 121 | v := populatedItem() |
| 122 | full, err := v.MarshalMsg(nil) |
| 123 | require.NoError(t, err) |
| 124 | |
| 125 | encodeMsgErrorSweep(t, len(full), v.EncodeMsg) |
| 126 | } |
| 127 | |
| 128 | func Test_item_Decode_UnknownField(t *testing.T) { |
| 129 | t.Parallel() |
nothing calls this directly
no test coverage detected