go-hello-world/main_test.go
2024-03-31 11:23:42 +03:30

15 lines
232 B
Go

// main_test.go
package main
import "testing"
func TestGreet(t *testing.T) {
result := Greet("Go")
expected := "Hello, Go!"
if result != expected {
t.Errorf("Greet was incorrect, got: %s, want: %s.", result, expected)
}
}