aboutsummaryrefslogtreecommitdiff
path: root/ber/marshal_test.go
blob: da568edbe567a36e1b4f491537e9199519ef61a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package ber

import "testing"

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