package ber import "testing" func TestMarschal(t *testing.T) { i := 42 b, err := Marshal(i) if err != nil { t.Error(err) } t.Log(b) }