c85507e46d
See https://www.apache.org/licenses/LICENSE-2.0.txt. Signed-off-by: Matt Moyer <moyerm@vmware.com>
18 lines
305 B
Go
18 lines
305 B
Go
/*
|
|
Copyright 2020 VMware, Inc.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
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)
|
|
}
|
|
}
|