summaryrefslogtreecommitdiffstats
path: root/plugin/plugintest/key_value_store.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/plugintest/key_value_store.go')
-rw-r--r--plugin/plugintest/key_value_store.go70
1 files changed, 0 insertions, 70 deletions
diff --git a/plugin/plugintest/key_value_store.go b/plugin/plugintest/key_value_store.go
deleted file mode 100644
index 30d60d708..000000000
--- a/plugin/plugintest/key_value_store.go
+++ /dev/null
@@ -1,70 +0,0 @@
-// Code generated by mockery v1.0.0. DO NOT EDIT.
-
-// Regenerate this file using `make plugin-mocks`.
-
-package plugintest
-
-import mock "github.com/stretchr/testify/mock"
-import model "github.com/mattermost/mattermost-server/model"
-
-// KeyValueStore is an autogenerated mock type for the KeyValueStore type
-type KeyValueStore struct {
- mock.Mock
-}
-
-// Delete provides a mock function with given fields: key
-func (_m *KeyValueStore) Delete(key string) *model.AppError {
- ret := _m.Called(key)
-
- var r0 *model.AppError
- if rf, ok := ret.Get(0).(func(string) *model.AppError); ok {
- r0 = rf(key)
- } else {
- if ret.Get(0) != nil {
- r0 = ret.Get(0).(*model.AppError)
- }
- }
-
- return r0
-}
-
-// Get provides a mock function with given fields: key
-func (_m *KeyValueStore) Get(key string) ([]byte, *model.AppError) {
- ret := _m.Called(key)
-
- var r0 []byte
- if rf, ok := ret.Get(0).(func(string) []byte); ok {
- r0 = rf(key)
- } else {
- if ret.Get(0) != nil {
- r0 = ret.Get(0).([]byte)
- }
- }
-
- var r1 *model.AppError
- if rf, ok := ret.Get(1).(func(string) *model.AppError); ok {
- r1 = rf(key)
- } else {
- if ret.Get(1) != nil {
- r1 = ret.Get(1).(*model.AppError)
- }
- }
-
- return r0, r1
-}
-
-// Set provides a mock function with given fields: key, value
-func (_m *KeyValueStore) Set(key string, value []byte) *model.AppError {
- ret := _m.Called(key, value)
-
- var r0 *model.AppError
- if rf, ok := ret.Get(0).(func(string, []byte) *model.AppError); ok {
- r0 = rf(key, value)
- } else {
- if ret.Get(0) != nil {
- r0 = ret.Get(0).(*model.AppError)
- }
- }
-
- return r0
-}