Documentation
¶
Overview ¶
Package mock_flow is a generated GoMock package.
Package mock_flow is a generated GoMock package.
Package mock_flow is a generated GoMock package.
Package mock_flow is a generated GoMock package.
Index ¶
- type MockController
- func (m *MockController) Cancel(arg0 string) error
- func (m *MockController) EXPECT() *MockControllerMockRecorder
- func (m *MockController) GetCurrentStep(arg0 string) (steps.Step, int, error)
- func (m *MockController) GetFlow() flow.Flow
- func (m *MockController) NextStep(arg0 string, arg1, arg2 int) error
- func (m *MockController) Start(arg0 string) error
- type MockControllerMockRecorder
- func (mr *MockControllerMockRecorder) Cancel(arg0 interface{}) *gomock.Call
- func (mr *MockControllerMockRecorder) GetCurrentStep(arg0 interface{}) *gomock.Call
- func (mr *MockControllerMockRecorder) GetFlow() *gomock.Call
- func (mr *MockControllerMockRecorder) NextStep(arg0, arg1, arg2 interface{}) *gomock.Call
- func (mr *MockControllerMockRecorder) Start(arg0 interface{}) *gomock.Call
- type MockFlow
- type MockFlowMockRecorder
- type MockStep
- type MockStepMockRecorder
- type MockStore
- func (m *MockStore) DeleteCurrentStep(arg0 string) error
- func (m *MockStore) EXPECT() *MockStoreMockRecorder
- func (m *MockStore) GetCurrentStep(arg0 string) (int, error)
- func (m *MockStore) GetPostID(arg0, arg1 string) (string, error)
- func (m *MockStore) RemovePostID(arg0, arg1 string) error
- func (m *MockStore) SetCurrentStep(arg0 string, arg1 int) error
- func (m *MockStore) SetPostID(arg0, arg1, arg2 string) error
- type MockStoreMockRecorder
- func (mr *MockStoreMockRecorder) DeleteCurrentStep(arg0 interface{}) *gomock.Call
- func (mr *MockStoreMockRecorder) GetCurrentStep(arg0 interface{}) *gomock.Call
- func (mr *MockStoreMockRecorder) GetPostID(arg0, arg1 interface{}) *gomock.Call
- func (mr *MockStoreMockRecorder) RemovePostID(arg0, arg1 interface{}) *gomock.Call
- func (mr *MockStoreMockRecorder) SetCurrentStep(arg0, arg1 interface{}) *gomock.Call
- func (mr *MockStoreMockRecorder) SetPostID(arg0, arg1, arg2 interface{}) *gomock.Call
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MockController ¶
type MockController struct {
// contains filtered or unexported fields
}
MockController is a mock of Controller interface.
func NewMockController ¶
func NewMockController(ctrl *gomock.Controller) *MockController
NewMockController creates a new mock instance.
func (*MockController) Cancel ¶
func (m *MockController) Cancel(arg0 string) error
Cancel mocks base method.
func (*MockController) EXPECT ¶
func (m *MockController) EXPECT() *MockControllerMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockController) GetCurrentStep ¶
GetCurrentStep mocks base method.
func (*MockController) GetFlow ¶
func (m *MockController) GetFlow() flow.Flow
GetFlow mocks base method.
func (*MockController) NextStep ¶
func (m *MockController) NextStep(arg0 string, arg1, arg2 int) error
NextStep mocks base method.
func (*MockController) Start ¶
func (m *MockController) Start(arg0 string) error
Start mocks base method.
type MockControllerMockRecorder ¶
type MockControllerMockRecorder struct {
// contains filtered or unexported fields
}
MockControllerMockRecorder is the mock recorder for MockController.
func (*MockControllerMockRecorder) Cancel ¶
func (mr *MockControllerMockRecorder) Cancel(arg0 interface{}) *gomock.Call
Cancel indicates an expected call of Cancel.
func (*MockControllerMockRecorder) GetCurrentStep ¶
func (mr *MockControllerMockRecorder) GetCurrentStep(arg0 interface{}) *gomock.Call
GetCurrentStep indicates an expected call of GetCurrentStep.
func (*MockControllerMockRecorder) GetFlow ¶
func (mr *MockControllerMockRecorder) GetFlow() *gomock.Call
GetFlow indicates an expected call of GetFlow.
func (*MockControllerMockRecorder) NextStep ¶
func (mr *MockControllerMockRecorder) NextStep(arg0, arg1, arg2 interface{}) *gomock.Call
NextStep indicates an expected call of NextStep.
func (*MockControllerMockRecorder) Start ¶
func (mr *MockControllerMockRecorder) Start(arg0 interface{}) *gomock.Call
Start indicates an expected call of Start.
type MockFlow ¶
type MockFlow struct {
// contains filtered or unexported fields
}
MockFlow is a mock of Flow interface.
func NewMockFlow ¶
func NewMockFlow(ctrl *gomock.Controller) *MockFlow
NewMockFlow creates a new mock instance.
func (*MockFlow) EXPECT ¶
func (m *MockFlow) EXPECT() *MockFlowMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
type MockFlowMockRecorder ¶
type MockFlowMockRecorder struct {
// contains filtered or unexported fields
}
MockFlowMockRecorder is the mock recorder for MockFlow.
func (*MockFlowMockRecorder) FlowDone ¶
func (mr *MockFlowMockRecorder) FlowDone(arg0 interface{}) *gomock.Call
FlowDone indicates an expected call of FlowDone.
func (*MockFlowMockRecorder) Length ¶
func (mr *MockFlowMockRecorder) Length() *gomock.Call
Length indicates an expected call of Length.
func (*MockFlowMockRecorder) Path ¶ added in v0.0.23
func (mr *MockFlowMockRecorder) Path() *gomock.Call
Path indicates an expected call of Path.
func (*MockFlowMockRecorder) Step ¶
func (mr *MockFlowMockRecorder) Step(arg0 interface{}) *gomock.Call
Step indicates an expected call of Step.
func (*MockFlowMockRecorder) Steps ¶
func (mr *MockFlowMockRecorder) Steps() *gomock.Call
Steps indicates an expected call of Steps.
type MockStep ¶
type MockStep struct {
// contains filtered or unexported fields
}
MockStep is a mock of Step interface.
func NewMockStep ¶
func NewMockStep(ctrl *gomock.Controller) *MockStep
NewMockStep creates a new mock instance.
func (*MockStep) Attachment ¶ added in v0.0.23
func (m *MockStep) Attachment(arg0 string) steps.Attachment
Attachment mocks base method.
func (*MockStep) EXPECT ¶
func (m *MockStep) EXPECT() *MockStepMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockStep) GetPropertyName ¶
GetPropertyName mocks base method.
type MockStepMockRecorder ¶
type MockStepMockRecorder struct {
// contains filtered or unexported fields
}
MockStepMockRecorder is the mock recorder for MockStep.
func (*MockStepMockRecorder) Attachment ¶ added in v0.0.23
func (mr *MockStepMockRecorder) Attachment(arg0 interface{}) *gomock.Call
Attachment indicates an expected call of Attachment.
func (*MockStepMockRecorder) GetPropertyName ¶
func (mr *MockStepMockRecorder) GetPropertyName() *gomock.Call
GetPropertyName indicates an expected call of GetPropertyName.
func (*MockStepMockRecorder) IsEmpty ¶
func (mr *MockStepMockRecorder) IsEmpty() *gomock.Call
IsEmpty indicates an expected call of IsEmpty.
type MockStore ¶
type MockStore struct {
// contains filtered or unexported fields
}
MockStore is a mock of Store interface.
func NewMockStore ¶
func NewMockStore(ctrl *gomock.Controller) *MockStore
NewMockStore creates a new mock instance.
func (*MockStore) DeleteCurrentStep ¶
DeleteCurrentStep mocks base method.
func (*MockStore) EXPECT ¶
func (m *MockStore) EXPECT() *MockStoreMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockStore) GetCurrentStep ¶
GetCurrentStep mocks base method.
func (*MockStore) RemovePostID ¶
RemovePostID mocks base method.
func (*MockStore) SetCurrentStep ¶
SetCurrentStep mocks base method.
type MockStoreMockRecorder ¶
type MockStoreMockRecorder struct {
// contains filtered or unexported fields
}
MockStoreMockRecorder is the mock recorder for MockStore.
func (*MockStoreMockRecorder) DeleteCurrentStep ¶
func (mr *MockStoreMockRecorder) DeleteCurrentStep(arg0 interface{}) *gomock.Call
DeleteCurrentStep indicates an expected call of DeleteCurrentStep.
func (*MockStoreMockRecorder) GetCurrentStep ¶
func (mr *MockStoreMockRecorder) GetCurrentStep(arg0 interface{}) *gomock.Call
GetCurrentStep indicates an expected call of GetCurrentStep.
func (*MockStoreMockRecorder) GetPostID ¶
func (mr *MockStoreMockRecorder) GetPostID(arg0, arg1 interface{}) *gomock.Call
GetPostID indicates an expected call of GetPostID.
func (*MockStoreMockRecorder) RemovePostID ¶
func (mr *MockStoreMockRecorder) RemovePostID(arg0, arg1 interface{}) *gomock.Call
RemovePostID indicates an expected call of RemovePostID.
func (*MockStoreMockRecorder) SetCurrentStep ¶
func (mr *MockStoreMockRecorder) SetCurrentStep(arg0, arg1 interface{}) *gomock.Call
SetCurrentStep indicates an expected call of SetCurrentStep.
func (*MockStoreMockRecorder) SetPostID ¶
func (mr *MockStoreMockRecorder) SetPostID(arg0, arg1, arg2 interface{}) *gomock.Call
SetPostID indicates an expected call of SetPostID.