(t *testing.T)
| 124 | } |
| 125 | |
| 126 | func newTestClient(t *testing.T) *Client { |
| 127 | t.Helper() |
| 128 | testFactory := cmdtesting.NewTestFactory() |
| 129 | t.Cleanup(testFactory.Cleanup) |
| 130 | |
| 131 | return &Client{ |
| 132 | Factory: testFactory.WithNamespace(v1.NamespaceDefault), |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | type RequestResponseAction struct { |
| 137 | Request http.Request |
no test coverage detected
searching dependent graphs…