()
| 28 | } |
| 29 | |
| 30 | func newFakeHubClient() *fakeHubClient { |
| 31 | return &fakeHubClient{convID: "conv-1", convCounter: 1, subCh: make(chan models.ConversationEvent, 16)} |
| 32 | } |
| 33 | |
| 34 | func (f *fakeHubClient) ResolveActiveConversation(_ context.Context, _ string) (string, string, error) { |
| 35 | f.mu.Lock() |
no outgoing calls
no test coverage detected