56
57
// GetCustomSearchAttributesMapper mocks base method.
58
>
func (m *MockRegistry) GetCustomSearchAttributesMapper(name Name) (CustomSearchAttributesMapper, error) {
registry_mock.go
59
>
m.ctrl.T.Helper()
60
>
ret := m.ctrl.Call(m, "GetCustomSearchAttributesMapper", name)
61
>
ret0, _ := ret[0].(CustomSearchAttributesMapper)
62
>
ret1, _ := ret[1].(error)
63
>
return ret0, ret1
64
>
}
65
66
// GetCustomSearchAttributesMapper indicates an expected call of GetCustomSearchAttributesMapper.
67
>
func (mr *MockRegistryMockRecorder) GetCustomSearchAttributesMapper(name any) *gomock.Call {
registry_mock.go
68
>
mr.mock.ctrl.T.Helper()
69
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetCustomSearchAttributesMapper", reflect.TypeOf((*MockRegistry)(nil).GetCustomSearchAttributesMapper), name)
70
>
}
71
72
// GetNamespace mocks base method.