forked from ory/fosite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
core_implicit_storage.go
41 lines (33 loc) · 1.36 KB
/
core_implicit_storage.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Automatically generated by MockGen. DO NOT EDIT!
// Source: github.com/ory-am/fosite/handler/core/implicit (interfaces: ImplicitGrantStorage)
package internal
import (
gomock "github.com/golang/mock/gomock"
fosite "github.com/ory-am/fosite"
context "golang.org/x/net/context"
)
// Mock of ImplicitGrantStorage interface
type MockImplicitGrantStorage struct {
ctrl *gomock.Controller
recorder *_MockImplicitGrantStorageRecorder
}
// Recorder for MockImplicitGrantStorage (not exported)
type _MockImplicitGrantStorageRecorder struct {
mock *MockImplicitGrantStorage
}
func NewMockImplicitGrantStorage(ctrl *gomock.Controller) *MockImplicitGrantStorage {
mock := &MockImplicitGrantStorage{ctrl: ctrl}
mock.recorder = &_MockImplicitGrantStorageRecorder{mock}
return mock
}
func (_m *MockImplicitGrantStorage) EXPECT() *_MockImplicitGrantStorageRecorder {
return _m.recorder
}
func (_m *MockImplicitGrantStorage) CreateImplicitAccessTokenSession(_param0 context.Context, _param1 string, _param2 fosite.Requester) error {
ret := _m.ctrl.Call(_m, "CreateImplicitAccessTokenSession", _param0, _param1, _param2)
ret0, _ := ret[0].(error)
return ret0
}
func (_mr *_MockImplicitGrantStorageRecorder) CreateImplicitAccessTokenSession(arg0, arg1, arg2 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "CreateImplicitAccessTokenSession", arg0, arg1, arg2)
}