NewMockStmt creates a new mock instance.
(ctrl *gomock.Controller)
| 129 | |
| 130 | // NewMockStmt creates a new mock instance. |
| 131 | func NewMockStmt(ctrl *gomock.Controller) *MockStmt { |
| 132 | mock := &MockStmt{ctrl: ctrl} |
| 133 | mock.recorder = &MockStmtMockRecorder{mock} |
| 134 | return mock |
| 135 | } |
| 136 | |
| 137 | // EXPECT returns an object that allows the caller to indicate expected use. |
| 138 | func (m *MockStmt) EXPECT() *MockStmtMockRecorder { |
no outgoing calls
no test coverage detected
searching dependent graphs…