MCPcopy
hub / github.com/cloudfoundry/cli / FakeConnection

Struct FakeConnection

api/plugin/pluginfakes/fake_connection.go:11–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9)
10
11type FakeConnection struct {
12 MakeStub func(*http.Request, *plugin.Response, plugin.ProxyReader) error
13 makeMutex sync.RWMutex
14 makeArgsForCall []struct {
15 arg1 *http.Request
16 arg2 *plugin.Response
17 arg3 plugin.ProxyReader
18 }
19 makeReturns struct {
20 result1 error
21 }
22 makeReturnsOnCall map[int]struct {
23 result1 error
24 }
25 invocations map[string][][]interface{}
26 invocationsMutex sync.RWMutex
27}
28
29func (fake *FakeConnection) Make(arg1 *http.Request, arg2 *plugin.Response, arg3 plugin.ProxyReader) error {
30 fake.makeMutex.Lock()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected