gogmagog/main_test.go
2020-12-24 21:35:38 -06:00

11 lines
176 B
Go

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