(t *testing.T, query string)
| 91 | } |
| 92 | |
| 93 | func processQueryNoErr(t *testing.T, query string) string { |
| 94 | res, err := processQuery(context.Background(), t, query) |
| 95 | require.NoError(t, err) |
| 96 | return res |
| 97 | } |
| 98 | |
| 99 | // processQueryForMetrics works like processQuery but returns metrics instead of response. |
| 100 | func processQueryForMetrics(t *testing.T, query string) *api.Metrics { |
no test coverage detected