error_test.go
367 字节
package protocol
import (
"encoding/json"
"testing"
)
func Test_Err(t *testing.T) {
errmsg := NewMesage(0)
bt1, _ := json.Marshal(errmsg)
t.Log(string(bt1))
normalmsg := NewErrWithMessage(0)
bt2, _ := json.Marshal(normalmsg)
t.Log(string(bt2))
}
func Test_Ceil(t *testing.T) {
value := 90.12
intValue := int(value)
t.Log(intValue)
t.Log(0.38 * 0.3)
}