26
proto/unmrashal_test.go
Normal file
26
proto/unmrashal_test.go
Normal file
@@ -0,0 +1,26 @@
|
||||
package pb
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"testing"
|
||||
|
||||
cp "go.unistack.org/micro-codec-proto/v3"
|
||||
)
|
||||
|
||||
func TestMarshalUnmarshal(t *testing.T) {
|
||||
c := cp.NewCodec()
|
||||
msg2 := &Message2{Items: []*Item2{{Key1: "akey1", Key2: "akey2"}, {Key1: "bkey1", Key2: "bkey2"}}}
|
||||
buf, err := c.Marshal(msg2)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
msg1 := &Message1{}
|
||||
err = c.Unmarshal(buf, msg1)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
for _, item := range msg1.Items {
|
||||
fmt.Printf("item %#+v\n", item)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user