package examples import "testing" func TestMultipleres(t *testing.T) { str := "Go Language!" if m, n := Multipleres(); m+n != str { t.Fatalf("Multipleres() returned a different string: %s%s", m, n) } }