mirror of
https://github.com/httprunner/httprunner.git
synced 2026-09-06 16:07:45 +08:00
18 lines
287 B
Go
18 lines
287 B
Go
//go:build localtest
|
|
|
|
package nskeyedarchiver
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
uuid "github.com/satori/go.uuid"
|
|
)
|
|
|
|
func TestNSUUID_archive(t *testing.T) {
|
|
objs := make([]interface{}, 0, 1)
|
|
nsuuid := NewNSUUID(uuid.NewV4().Bytes())
|
|
objects := nsuuid.archive(objs)
|
|
fmt.Println(objects)
|
|
}
|