NewMemory creates a new mock instance.
(ctrl *gomock.Controller)
| 32 | |
| 33 | // NewMemory creates a new mock instance. |
| 34 | func NewMemory(ctrl *gomock.Controller) *Memory { |
| 35 | mock := &Memory{ctrl: ctrl} |
| 36 | mock.recorder = &MemoryMockRecorder{mock} |
| 37 | return mock |
| 38 | } |
| 39 | |
| 40 | // EXPECT returns an object that allows the caller to indicate expected use. |
| 41 | func (m *Memory) EXPECT() *MemoryMockRecorder { |
no outgoing calls