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

import "testing"

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