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
|
// Code generated by MockGen. DO NOT EDIT.
// Source: go.uber.org/mock/mockgen/internal/tests/add_generate_directive (interfaces: Foo)
//
// Generated by this command:
//
// mockgen -write_generate_directive -destination mock.go -package add_generate_directive . Foo
//
// Package add_generate_directive is a generated GoMock package.
package add_generate_directive
import (
reflect "reflect"
gomock "go.uber.org/mock/gomock"
)
//go:generate mockgen -write_generate_directive -destination mock.go -package add_generate_directive . Foo
// MockFoo is a mock of Foo interface.
type MockFoo struct {
ctrl *gomock.Controller
recorder *MockFooMockRecorder
isgomock struct{}
}
// MockFooMockRecorder is the mock recorder for MockFoo.
type MockFooMockRecorder struct {
mock *MockFoo
}
// NewMockFoo creates a new mock instance.
func NewMockFoo(ctrl *gomock.Controller) *MockFoo {
mock := &MockFoo{ctrl: ctrl}
mock.recorder = &MockFooMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockFoo) EXPECT() *MockFooMockRecorder {
return m.recorder
}
// Bar mocks base method.
func (m *MockFoo) Bar(channels []string, message chan<- Message) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Bar", channels, message)
}
// Bar indicates an expected call of Bar.
func (mr *MockFooMockRecorder) Bar(channels, message any) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Bar", reflect.TypeOf((*MockFoo)(nil).Bar), channels, message)
}
|