(ctx context.Context, req *agentproto.UpdateAppStatusRequest)
| 22 | } |
| 23 | |
| 24 | func (m *fakeAgentAPI) UpdateAppStatus(ctx context.Context, req *agentproto.UpdateAppStatusRequest) (*agentproto.UpdateAppStatusResponse, error) { |
| 25 | return m.updateAppStatus(ctx, req) |
| 26 | } |
| 27 | |
| 28 | // newSocketClient creates a DRPC client connected to the Unix socket at the given path. |
| 29 | func newSocketClient(ctx context.Context, t *testing.T, socketPath string) *agentsocket.Client { |
nothing calls this directly
no test coverage detected