package utils import "testing" func TestNames_Random(t *testing.T) { for i := 0; i < 10; i++ { name := RandomNickname() t.Logf("name: %s", name) } }