aboutsummaryrefslogtreecommitdiff
path: root/ber/marshal_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'ber/marshal_test.go')
-rw-r--r--ber/marshal_test.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/ber/marshal_test.go b/ber/marshal_test.go
new file mode 100644
index 0000000..da568ed
--- /dev/null
+++ b/ber/marshal_test.go
@@ -0,0 +1,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)
+}