(ctx context.Context, t *testing.T, ing *Ingester, ty labels.MatchType, n, v string)
| 78 | ) |
| 79 | |
| 80 | func runTestQuery(ctx context.Context, t *testing.T, ing *Ingester, ty labels.MatchType, n, v string) (model.Matrix, *client.QueryRequest, error) { |
| 81 | return runTestQueryTimes(ctx, t, ing, ty, n, v, model.Earliest, model.Latest) |
| 82 | } |
| 83 | |
| 84 | func runTestQueryTimes(ctx context.Context, t *testing.T, ing *Ingester, ty labels.MatchType, n, v string, start, end model.Time) (model.Matrix, *client.QueryRequest, error) { |
| 85 | matcher, err := labels.NewMatcher(ty, n, v) |
no test coverage detected