(t *testing.T)
| 26 | } |
| 27 | |
| 28 | func TestNewMessagePackEncoder(t *testing.T) { |
| 29 | encoder := NewMessagePackEncoder() |
| 30 | |
| 31 | assert.NotNil(t, encoder.enc) |
| 32 | assert.NotNil(t, encoder.b) |
| 33 | } |
| 34 | |
| 35 | func TestNewMessagePackDecoder(t *testing.T) { |
| 36 | exampleBytes := []byte("example") |
nothing calls this directly
no test coverage detected