(r *manual.Resolver, s string)
| 58 | } |
| 59 | |
| 60 | func parseCfg(r *manual.Resolver, s string) *serviceconfig.ParseResult { |
| 61 | scpr := r.CC().ParseServiceConfig(s) |
| 62 | if scpr.Err != nil { |
| 63 | panic(fmt.Sprintf("Error parsing config %q: %v", s, scpr.Err)) |
| 64 | } |
| 65 | return scpr |
| 66 | } |
| 67 | |
| 68 | func (s) TestNewClientWithMultipleBackendsNotSendingServerPreface(t *testing.T) { |
| 69 | lis1, err := net.Listen("tcp", "localhost:0") |
no test coverage detected