mock_flow

package
v0.0.23 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 2, 2022 License: Apache-2.0 Imports: 4 Imported by: 0

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

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

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockController) GetCurrentStep

func (m *MockController) GetCurrentStep(arg0 string) (steps.Step, int, error)

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.

func (*MockFlow) FlowDone

func (m *MockFlow) FlowDone(arg0 string)

FlowDone mocks base method.

func (*MockFlow) Length

func (m *MockFlow) Length() int

Length mocks base method.

func (*MockFlow) Path added in v0.0.23

func (m *MockFlow) Path() string

Path mocks base method.

func (*MockFlow) Step

func (m *MockFlow) Step(arg0 int) steps.Step

Step mocks base method.

func (*MockFlow) Steps

func (m *MockFlow) Steps() []steps.Step

Steps mocks base method.

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

func (m *MockStep) GetPropertyName() string

GetPropertyName mocks base method.

func (*MockStep) IsEmpty

func (m *MockStep) IsEmpty() bool

IsEmpty 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

func (m *MockStore) DeleteCurrentStep(arg0 string) error

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

func (m *MockStore) GetCurrentStep(arg0 string) (int, error)

GetCurrentStep mocks base method.

func (*MockStore) GetPostID

func (m *MockStore) GetPostID(arg0, arg1 string) (string, error)

GetPostID mocks base method.

func (*MockStore) RemovePostID

func (m *MockStore) RemovePostID(arg0, arg1 string) error

RemovePostID mocks base method.

func (*MockStore) SetCurrentStep

func (m *MockStore) SetCurrentStep(arg0 string, arg1 int) error

SetCurrentStep mocks base method.

func (*MockStore) SetPostID

func (m *MockStore) SetPostID(arg0, arg1, arg2 string) error

SetPostID 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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL