1
0
Fork 0
bocadillo/parser/encoding_test.go

10 lines
132 B
Go

package parser
import "testing"
func TestEncodeUint8(t *testing.T) {
buf := make([]byte, 1)
encodeUint8(buf, 123)
t.Log(buf)
}