1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
// Code generated by MockGen. DO NOT EDIT.
// Source: vendor_dep.go
//
// Generated by this command:
//
// mockgen -destination source_mock_package/mock.go -source=vendor_dep.go
//
// Package mock_vendor_dep is a generated GoMock package.
package mock_vendor_dep
import (
reflect "reflect"
gomock "go.uber.org/mock/gomock"
present "golang.org/x/tools/present"
)
// MockVendorsDep is a mock of VendorsDep interface.
type MockVendorsDep struct {
ctrl *gomock.Controller
recorder *MockVendorsDepMockRecorder
isgomock struct{}
}
// MockVendorsDepMockRecorder is the mock recorder for MockVendorsDep.
type MockVendorsDepMockRecorder struct {
mock *MockVendorsDep
}
// NewMockVendorsDep creates a new mock instance.
func NewMockVendorsDep(ctrl *gomock.Controller) *MockVendorsDep {
mock := &MockVendorsDep{ctrl: ctrl}
mock.recorder = &MockVendorsDepMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockVendorsDep) EXPECT() *MockVendorsDepMockRecorder {
return m.recorder
}
// Foo mocks base method.
func (m *MockVendorsDep) Foo() present.Elem {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Foo")
ret0, _ := ret[0].(present.Elem)
return ret0
}
// Foo indicates an expected call of Foo.
func (mr *MockVendorsDepMockRecorder) Foo() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Foo", reflect.TypeOf((*MockVendorsDep)(nil).Foo))
}
|