148
149
// Attrs mocks base method.
150
>
func (m *MockObjectHandleWrapper) Attrs(ctx context.Context) (*storage.ObjectAttrs, error) {
client_delegate_mock.go
151
>
m.ctrl.T.Helper()
152
>
ret := m.ctrl.Call(m, "Attrs", ctx)
153
>
ret0, _ := ret[0].(*storage.ObjectAttrs)
154
>
ret1, _ := ret[1].(error)
155
>
return ret0, ret1
156
>
}
157
158
// Attrs indicates an expected call of Attrs.
160
>
mr.mock.ctrl.T.Helper()
161
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Attrs", reflect.TypeOf((*MockObjectHandleWrapper)(nil).Attrs), ctx)
162
>
}
163
164
// NewReader mocks base method.