summaryrefslogtreecommitdiff
path: root/newguy_test.go
blob: 055ea82aca18c32175079eb59284bf1184ce8c20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import "testing"

func TestGenerateName(t *testing.T) {
	name := GenerateName()
	t.Log(name)
}

func TestNewGuy(t *testing.T) {
	g := NewGuy()
	t.Logf("%+v", g)

	for q := range g.queue {
		t.Log(q)
	}
}