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
|
// Code generated by MockGen. DO NOT EDIT.
// Source: go.uber.org/mock/mockgen/internal/tests/sanitization (interfaces: AnyMock)
//
// Generated by this command:
//
// mockgen -destination mockout/mock.go -package mockout . AnyMock
//
// Package mockout is a generated GoMock package.
package mockout
import (
reflect "reflect"
gomock "go.uber.org/mock/gomock"
any0 "go.uber.org/mock/mockgen/internal/tests/sanitization/any"
)
// MockAnyMock is a mock of AnyMock interface.
type MockAnyMock struct {
ctrl *gomock.Controller
recorder *MockAnyMockMockRecorder
isgomock struct{}
}
// MockAnyMockMockRecorder is the mock recorder for MockAnyMock.
type MockAnyMockMockRecorder struct {
mock *MockAnyMock
}
// NewMockAnyMock creates a new mock instance.
func NewMockAnyMock(ctrl *gomock.Controller) *MockAnyMock {
mock := &MockAnyMock{ctrl: ctrl}
mock.recorder = &MockAnyMockMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockAnyMock) EXPECT() *MockAnyMockMockRecorder {
return m.recorder
}
// Do mocks base method.
func (m *MockAnyMock) Do(a *any0.Any, b int) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Do", a, b)
}
// Do indicates an expected call of Do.
func (mr *MockAnyMockMockRecorder) Do(a, b any) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Do", reflect.TypeOf((*MockAnyMock)(nil).Do), a, b)
}
|