NewMockResult creates a new mock instance.
(ctrl *gomock.Controller)
| 210 | |
| 211 | // NewMockResult creates a new mock instance. |
| 212 | func NewMockResult(ctrl *gomock.Controller) *MockResult { |
| 213 | mock := &MockResult{ctrl: ctrl} |
| 214 | mock.recorder = &MockResultMockRecorder{mock} |
| 215 | return mock |
| 216 | } |
| 217 | |
| 218 | // EXPECT returns an object that allows the caller to indicate expected use. |
| 219 | func (m *MockResult) EXPECT() *MockResultMockRecorder { |
no outgoing calls
no test coverage detected
searching dependent graphs…