Files
go_with_tests/hello_test.go

13 lines
176 B
Go

package main
import "testing"
func TestHello(t *testing.T) {
got := Hello("Hoborg")
want := "Hello, Hoborg"
if got != want {
t.Errorf("got %q want %q", got, want)
}
}