gupta_test.go 173 B

1234567891011121314
  1. package gupta
  2. import (
  3. "testing"
  4. )
  5. func TestHello(t *testing.T) {
  6. got := Hello()
  7. want := "Hello, world"
  8. if got != want {
  9. t.Errorf("got %q want %q", got, want)
  10. }
  11. }