summaryrefslogtreecommitdiffstats
path: root/store/storetest/mocks/ComplianceStore.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/storetest/mocks/ComplianceStore.go')
-rw-r--r--store/storetest/mocks/ComplianceStore.go94
1 files changed, 94 insertions, 0 deletions
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
+}