File: uid_test.go

package info (click to toggle)
golang-github-araddon-gou 0.0~git20180509.7db4be5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 160 kB
  • sloc: makefile: 2
file content (11 lines) | stat: -rw-r--r-- 109 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
package gou

import (
	"testing"
)

func TestUid(t *testing.T) {
	u := NewUid()
	Debug(u)
	Debug(NewUid())
}