hellogomod/hello_test.go
Yuki 4ff8db06db
feat: Change package name.
Change package name since URL is identity in go.
2025-06-14 00:19:17 +08:00

13 lines
206 B
Go

package git.alienyuki.com/yuki/hellogomod
import "testing"
func TestSayHello(t *testing.T) {
s := SayHello("yuki")
want := "Hello, yuki!"
if s != want {
t.Errorf("return %s, want %s", s, want)
}
}