(t *testing.T)
| 17 | } |
| 18 | |
| 19 | func Test_DecodeMultikey_CheckInterface(t *testing.T) { |
| 20 | m := NewProtoCodec("test", newMockMessage) |
| 21 | |
| 22 | _, err := m.DecodeMultiKey(nil) |
| 23 | |
| 24 | require.Error(t, err, "invalid type") |
| 25 | } |
| 26 | |
| 27 | func Test_EncodeMultikey(t *testing.T) { |
| 28 | codec := NewProtoCodec("test", newProtoDescMock) |
nothing calls this directly
no test coverage detected