package main import "testing" func TestNameGen(t *testing.T) { g := NewNameGen() t.Logf("next id: %s", g.Next()) t.Logf("next id: %s", g.Next()) }