package protocol
import (
"encoding/json"
"testing"
)
func Test_Err(t *testing.T) {
errmsg := NewMessage("0")
bt1, _ := json.Marshal(errmsg)
t.Log(string(bt1))
normalmsg := NewErrWithMessage("0")
bt2, _ := json.Marshal(normalmsg)
t.Log(string(bt2))
}