mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-01-05 04:56:11 +00:00
13 lines
234 B
Go
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)
|
|
}
|
|
}
|