package git.alienyuki.com/yuki/hellogomod import "testing" func TestSayHello(t *testing.T) { s := SayHello("yuki") want := "Hello, yuki!" if s != want { t.Errorf("return %s, want %s", s, want) } }