(x, y error)
| 3440 | } |
| 3441 | |
| 3442 | func equalError(x, y error) bool { |
| 3443 | return x == y || (x != nil && y != nil && x.Error() == y.Error()) |
| 3444 | } |
| 3445 | |
| 3446 | // concurrentSendServer is a TestServiceServer whose |
| 3447 | // StreamingOutputCall makes ten serial Send calls, sending payloads |
no test coverage detected