15 lines
232 B
Go
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)
|
|
}
|
|
}
|