()
| 83 | } |
| 84 | |
| 85 | func newFakeAlertStore() *fakeAlertStore { |
| 86 | return &fakeAlertStore{ |
| 87 | states: make(map[string]alertspb.FullStateDesc), |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | func (f *fakeAlertStore) GetFullState(ctx context.Context, user string) (alertspb.FullStateDesc, error) { |
| 92 | if result, ok := f.states[user]; ok { |
no outgoing calls
no test coverage detected