| 172 | } |
| 173 | |
| 174 | type testStream struct { |
| 175 | send chan<- typeurl.Any |
| 176 | recv <-chan typeurl.Any |
| 177 | closer chan struct{} |
| 178 | remote <-chan struct{} |
| 179 | } |
| 180 | |
| 181 | func (ts *testStream) Send(a typeurl.Any) error { |
| 182 | select { |
nothing calls this directly
no outgoing calls
no test coverage detected