MCPcopy Index your code
hub / github.com/cloudfoundry/cli / FakeReader

Struct FakeReader

api/cloudcontroller/ccv3/ccv3fakes/fake_reader.go:9–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7)
8
9type FakeReader struct {
10 ReadStub func([]byte) (int, error)
11 readMutex sync.RWMutex
12 readArgsForCall []struct {
13 arg1 []byte
14 }
15 readReturns struct {
16 result1 int
17 result2 error
18 }
19 readReturnsOnCall map[int]struct {
20 result1 int
21 result2 error
22 }
23 invocations map[string][][]interface{}
24 invocationsMutex sync.RWMutex
25}
26
27func (fake *FakeReader) Read(arg1 []byte) (int, error) {
28 var arg1Copy []byte

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected