gotest/main_test.go
2019-08-24 14:12:29 -05:00

13 lines
230 B
Go

package main
import "testing"
func TestSayHi(t *testing.T) {
expected := "Hi Testy"
greeting := sayHi("Testy")
if greeting != expected {
t.Errorf("Greeting was incorrect, got: '%s', want: '%s'",
greeting, expected)
}
}