(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func Test_EncodeMultikey_CheckInterface(t *testing.T) { |
| 12 | m := NewProtoCodec("test", newMockMessage) |
| 13 | |
| 14 | _, err := m.EncodeMultiKey(nil) |
| 15 | |
| 16 | require.Error(t, err, "invalid type") |
| 17 | } |
| 18 | |
| 19 | func Test_DecodeMultikey_CheckInterface(t *testing.T) { |
| 20 | m := NewProtoCodec("test", newMockMessage) |
nothing calls this directly
no test coverage detected