()
| 226 | } |
| 227 | |
| 228 | func newFakeORCAService() *fakeORCAService { |
| 229 | return &fakeORCAService{ |
| 230 | reqCh: make(chan *v3orcaservicepb.OrcaLoadReportRequest), |
| 231 | respCh: make(chan any), |
| 232 | } |
| 233 | } |
| 234 | |
| 235 | func (f *fakeORCAService) close() { |
| 236 | close(f.respCh) |
no outgoing calls
no test coverage detected