Files
pinniped/pkg/hello/hello_test.go
Ryan Richard 911f8736f1 Hello, world!
2020-07-02 17:05:59 -07:00

13 lines
234 B
Go

package hello
import (
"testing"
)
func TestHelloSayerImpl_SayHello(t *testing.T) {
actualGreeting := NewHelloSayer().SayHello()
if actualGreeting != "hello" {
t.Errorf("expected to say hello but said %v", actualGreeting)
}
}