()
| 48 | } |
| 49 | |
| 50 | func newFakeReplicator() *fakeReplicator { |
| 51 | return &fakeReplicator{ |
| 52 | results: make(map[string]*clusterpb.Part), |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | func (f *fakeReplicator) ReplicateStateForUser(ctx context.Context, userID string, p *clusterpb.Part) error { |
| 57 | f.mtx.Lock() |
no outgoing calls
no test coverage detected