package main import "testing" func TestNewGuy(t *testing.T) { g := NewGuy() t.Logf("%+v", g) for q := range g.queue { t.Log(q) } }