bocadillo/encoding_test.go
2018-07-29 19:20:30 +02:00

10 lines
129 B
Go

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