(t *testing.T, query string)
| 80 | } |
| 81 | |
| 82 | func processQueryNoErr(t *testing.T, query string) string { |
| 83 | res, err := processQuery(context.Background(), t, query) |
| 84 | require.NoError(t, err) |
| 85 | return res |
| 86 | } |
| 87 | |
| 88 | // processQueryForMetrics works like processQuery but returns metrics instead of response. |
| 89 | func processQueryForMetrics(t *testing.T, query string) *api.Metrics { |
no test coverage detected