mirror of
https://github.com/injoyai/tdx.git
synced 2025-11-26 21:25:35 +08:00
16 lines
247 B
Go
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())
|
|
}
|