From 6f6005c617799e2f51071f43af718e5d4e77492b Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 26 Oct 2017 11:36:54 -0500 Subject: Store mocks (#7724) * store mocks * add example --- store/storetest/mocks/ComplianceStore.go | 94 ++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 store/storetest/mocks/ComplianceStore.go (limited to 'store/storetest/mocks/ComplianceStore.go') diff --git a/store/storetest/mocks/ComplianceStore.go b/store/storetest/mocks/ComplianceStore.go new file mode 100644 index 000000000..b2208ead7 --- /dev/null +++ b/store/storetest/mocks/ComplianceStore.go @@ -0,0 +1,94 @@ +// Code generated by mockery v1.0.0 + +// Regenerate this file using `make store-mocks`. + +package mocks + +import mock "github.com/stretchr/testify/mock" +import model "github.com/mattermost/mattermost-server/model" +import store "github.com/mattermost/mattermost-server/store" + +// ComplianceStore is an autogenerated mock type for the ComplianceStore type +type ComplianceStore struct { + mock.Mock +} + +// ComplianceExport provides a mock function with given fields: compliance +func (_m *ComplianceStore) ComplianceExport(compliance *model.Compliance) store.StoreChannel { + ret := _m.Called(compliance) + + var r0 store.StoreChannel + if rf, ok := ret.Get(0).(func(*model.Compliance) store.StoreChannel); ok { + r0 = rf(compliance) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(store.StoreChannel) + } + } + + return r0 +} + +// Get provides a mock function with given fields: id +func (_m *ComplianceStore) Get(id string) store.StoreChannel { + ret := _m.Called(id) + + var r0 store.StoreChannel + if rf, ok := ret.Get(0).(func(string) store.StoreChannel); ok { + r0 = rf(id) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(store.StoreChannel) + } + } + + return r0 +} + +// GetAll provides a mock function with given fields: offset, limit +func (_m *ComplianceStore) GetAll(offset int, limit int) store.StoreChannel { + ret := _m.Called(offset, limit) + + var r0 store.StoreChannel + if rf, ok := ret.Get(0).(func(int, int) store.StoreChannel); ok { + r0 = rf(offset, limit) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(store.StoreChannel) + } + } + + return r0 +} + +// Save provides a mock function with given fields: compliance +func (_m *ComplianceStore) Save(compliance *model.Compliance) store.StoreChannel { + ret := _m.Called(compliance) + + var r0 store.StoreChannel + if rf, ok := ret.Get(0).(func(*model.Compliance) store.StoreChannel); ok { + r0 = rf(compliance) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(store.StoreChannel) + } + } + + return r0 +} + +// Update provides a mock function with given fields: compliance +func (_m *ComplianceStore) Update(compliance *model.Compliance) store.StoreChannel { + ret := _m.Called(compliance) + + var r0 store.StoreChannel + if rf, ok := ret.Get(0).(func(*model.Compliance) store.StoreChannel); ok { + r0 = rf(compliance) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(store.StoreChannel) + } + } + + return r0 +} -- cgit v1.2.3-1-g7c22