bocadillo/encoding_test.go

10 lines
129 B
Go
Raw Normal View History

2018-07-29 19:20:30 +02:00
package blt
import "testing"
func TestEncodeUint8(t *testing.T) {
buf := make([]byte, 1)
encodeUint8(buf, 123)
t.Log(buf)
}