(t *testing.T, ctx context.Context, socketPath, path string)
| 117 | } |
| 118 | |
| 119 | func httpGET(t *testing.T, ctx context.Context, socketPath, path string) []byte { |
| 120 | t.Helper() |
| 121 | return httpDo(t, ctx, http.MethodGet, socketPath, path, nil) |
| 122 | } |
| 123 | |
| 124 | func httpDo(t *testing.T, ctx context.Context, method, socketPath, path string, payload any) []byte { |
| 125 | t.Helper() |
no test coverage detected