Files
injoyai-tdx/protocol/model_quote_test.go
2024-11-04 23:54:28 +08:00

16 lines
247 B
Go

package protocol
import (
"testing"
)
func Test_quote_Frame(t *testing.T) {
//0c0000000001130013003e050500000000000000010000303030303031
f, err := MQuote.Frame("sz000001")
if err != nil {
t.Error(err)
return
}
t.Log(f.Bytes().HEX())
}