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/sample/concurrent (interfaces: Math)
//
// Generated by this command:
//
// mockgen -destination mock/concurrent_mock.go go.uber.org/mock/sample/concurrent Math
//
// Package mock_concurrent is a generated GoMock package.
package mock_concurrent
import (
reflect "reflect"
gomock "go.uber.org/mock/gomock"
)
// MockMath is a mock of Math interface.
type MockMath struct {
ctrl *gomock.Controller
recorder *MockMathMockRecorder
isgomock struct{}
}
// MockMathMockRecorder is the mock recorder for MockMath.
type MockMathMockRecorder struct {
mock *MockMath
}
// NewMockMath creates a new mock instance.
func NewMockMath(ctrl *gomock.Controller) *MockMath {
mock := &MockMath{ctrl: ctrl}
mock.recorder = &MockMathMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockMath) EXPECT() *MockMathMockRecorder {
return m.recorder
}
// Sum mocks base method.
func (m *MockMath) Sum(a, b int) int {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Sum", a, b)
ret0, _ := ret[0].(int)
return ret0
}
// Sum indicates an expected call of Sum.
func (mr *MockMathMockRecorder) Sum(a, b any) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Sum", reflect.TypeOf((*MockMath)(nil).Sum), a, b)
}
|