TODO(bwplotka): Replace those mocks with remote.concreteSeriesSet.
| 45 | |
| 46 | // TODO(bwplotka): Replace those mocks with remote.concreteSeriesSet. |
| 47 | type mockSeriesSet struct { |
| 48 | next func() bool |
| 49 | series func() storage.Series |
| 50 | ws func() annotations.Annotations |
| 51 | err func() error |
| 52 | } |
| 53 | |
| 54 | func (m *mockSeriesSet) Next() bool { return m.next() } |
| 55 | func (m *mockSeriesSet) At() storage.Series { return m.series() } |
nothing calls this directly
no outgoing calls
no test coverage detected