From 14a6aa4c488bcd2d49103cbee1424b2769d77ce0 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Fri, 12 Aug 2016 14:05:45 +0200 Subject: Initial import --- newguy_test.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 newguy_test.go (limited to 'newguy_test.go') diff --git a/newguy_test.go b/newguy_test.go new file mode 100644 index 0000000..585f7a0 --- /dev/null +++ b/newguy_test.go @@ -0,0 +1,13 @@ +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) +} -- cgit v1.2.3