service/history/workflowcache/cache_mock.go (40 lines of code) (raw):

// The MIT License (MIT) // Copyright (c) 2017-2020 Uber Technologies Inc. // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. // Code generated by MockGen. DO NOT EDIT. // Source: github.com/uber/cadence/service/history/workflowcache (interfaces: WFCache) // Package workflowcache is a generated GoMock package. package workflowcache import ( reflect "reflect" gomock "github.com/golang/mock/gomock" ) // MockWFCache is a mock of WFCache interface. type MockWFCache struct { ctrl *gomock.Controller recorder *MockWFCacheMockRecorder } // MockWFCacheMockRecorder is the mock recorder for MockWFCache. type MockWFCacheMockRecorder struct { mock *MockWFCache } // NewMockWFCache creates a new mock instance. func NewMockWFCache(ctrl *gomock.Controller) *MockWFCache { mock := &MockWFCache{ctrl: ctrl} mock.recorder = &MockWFCacheMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockWFCache) EXPECT() *MockWFCacheMockRecorder { return m.recorder } // AllowExternal mocks base method. func (m *MockWFCache) AllowExternal(arg0, arg1 string) bool { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "AllowExternal", arg0, arg1) ret0, _ := ret[0].(bool) return ret0 } // AllowExternal indicates an expected call of AllowExternal. func (mr *MockWFCacheMockRecorder) AllowExternal(arg0, arg1 interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AllowExternal", reflect.TypeOf((*MockWFCache)(nil).AllowExternal), arg0, arg1) } // AllowInternal mocks base method. func (m *MockWFCache) AllowInternal(arg0, arg1 string) bool { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "AllowInternal", arg0, arg1) ret0, _ := ret[0].(bool) return ret0 } // AllowInternal indicates an expected call of AllowInternal. func (mr *MockWFCacheMockRecorder) AllowInternal(arg0, arg1 interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AllowInternal", reflect.TypeOf((*MockWFCache)(nil).AllowInternal), arg0, arg1) }