| 72 | } |
| 73 | |
| 74 | type mockChunkSeriesSet struct { |
| 75 | next func() bool |
| 76 | series func() storage.ChunkSeries |
| 77 | ws func() annotations.Annotations |
| 78 | err func() error |
| 79 | } |
| 80 | |
| 81 | func (m *mockChunkSeriesSet) Next() bool { return m.next() } |
| 82 | func (m *mockChunkSeriesSet) At() storage.ChunkSeries { return m.series() } |
nothing calls this directly
no outgoing calls
no test coverage detected