github.com/golang/mock@v1.6.0/mockgen/internal/tests/copyright_file/mock.go (about) 1 // This is a mock copyright header. 2 // 3 // Lorem ipsum dolor sit amet, consectetur adipiscing elit, 4 // sed do eiusmod tempor incididunt ut labore et dolore magna 5 // aliqua. Velit ut tortor pretium viverra suspendisse potenti. 6 // 7 8 // Code generated by MockGen. DO NOT EDIT. 9 // Source: input.go 10 11 // Package empty_interface is a generated GoMock package. 12 package empty_interface 13 14 import ( 15 gomock "github.com/golang/mock/gomock" 16 ) 17 18 // MockEmpty is a mock of Empty interface. 19 type MockEmpty struct { 20 ctrl *gomock.Controller 21 recorder *MockEmptyMockRecorder 22 } 23 24 // MockEmptyMockRecorder is the mock recorder for MockEmpty. 25 type MockEmptyMockRecorder struct { 26 mock *MockEmpty 27 } 28 29 // NewMockEmpty creates a new mock instance. 30 func NewMockEmpty(ctrl *gomock.Controller) *MockEmpty { 31 mock := &MockEmpty{ctrl: ctrl} 32 mock.recorder = &MockEmptyMockRecorder{mock} 33 return mock 34 } 35 36 // EXPECT returns an object that allows the caller to indicate expected use. 37 func (m *MockEmpty) EXPECT() *MockEmptyMockRecorder { 38 return m.recorder 39 }