masterActionRun

package
v0.0.0-...-4834045 Latest Latest
Warning

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

Go to latest
Published: Jul 15, 2024 License: MIT Imports: 4 Imported by: 0

Documentation

Overview

Package masterActionRun 実行されるアクション

Package masterActionRun 実行されるアクション

Package masterActionRun is a generated GoMock package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MasterActionRun

type MasterActionRun struct {
	MasterActionRunId int64
	Name              string
	MasterActionId    int64
}

func NewMasterActionRun

func NewMasterActionRun() *MasterActionRun

func SetMasterActionRun

func SetMasterActionRun(masterActionRunId int64, name string, masterActionId int64) *MasterActionRun

type MasterActionRunMysqlRepository

type MasterActionRunMysqlRepository interface {
	Find(ctx context.Context, masterActionRunId int64) (*MasterActionRun, error)
	FindOrNil(ctx context.Context, masterActionRunId int64) (*MasterActionRun, error)
	FindByMasterActionId(ctx context.Context, masterActionId int64) (*MasterActionRun, error)
	FindOrNilByMasterActionId(ctx context.Context, masterActionId int64) (*MasterActionRun, error)
	FindList(ctx context.Context) (MasterActionRuns, error)
	FindListByMasterActionId(ctx context.Context, masterActionId int64) (MasterActionRuns, error)
	Create(ctx context.Context, tx *gorm.DB, m *MasterActionRun) (*MasterActionRun, error)
	CreateList(ctx context.Context, tx *gorm.DB, ms MasterActionRuns) (MasterActionRuns, error)
	Update(ctx context.Context, tx *gorm.DB, m *MasterActionRun) (*MasterActionRun, error)
	UpdateList(ctx context.Context, tx *gorm.DB, ms MasterActionRuns) (MasterActionRuns, error)
	Delete(ctx context.Context, tx *gorm.DB, m *MasterActionRun) error
	DeleteList(ctx context.Context, tx *gorm.DB, ms MasterActionRuns) error
}

type MasterActionRuns

type MasterActionRuns []*MasterActionRun

func NewMasterActionRuns

func NewMasterActionRuns() MasterActionRuns

type MockMasterActionRunMysqlRepository

type MockMasterActionRunMysqlRepository struct {
	// contains filtered or unexported fields
}

MockMasterActionRunMysqlRepository is a mock of MasterActionRunMysqlRepository interface.

func NewMockMasterActionRunMysqlRepository

func NewMockMasterActionRunMysqlRepository(ctrl *gomock.Controller) *MockMasterActionRunMysqlRepository

NewMockMasterActionRunMysqlRepository creates a new mock instance.

func (*MockMasterActionRunMysqlRepository) Create

Create mocks base method.

func (*MockMasterActionRunMysqlRepository) CreateList

CreateList mocks base method.

func (*MockMasterActionRunMysqlRepository) Delete

Delete mocks base method.

func (*MockMasterActionRunMysqlRepository) DeleteList

DeleteList mocks base method.

func (*MockMasterActionRunMysqlRepository) EXPECT

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

func (*MockMasterActionRunMysqlRepository) Find

func (m *MockMasterActionRunMysqlRepository) Find(ctx context.Context, masterActionRunId int64) (*MasterActionRun, error)

Find mocks base method.

func (*MockMasterActionRunMysqlRepository) FindByMasterActionId

func (m *MockMasterActionRunMysqlRepository) FindByMasterActionId(ctx context.Context, masterActionId int64) (*MasterActionRun, error)

FindByMasterActionId mocks base method.

func (*MockMasterActionRunMysqlRepository) FindList

FindList mocks base method.

func (*MockMasterActionRunMysqlRepository) FindListByMasterActionId

func (m *MockMasterActionRunMysqlRepository) FindListByMasterActionId(ctx context.Context, masterActionId int64) (MasterActionRuns, error)

FindListByMasterActionId mocks base method.

func (*MockMasterActionRunMysqlRepository) FindOrNil

func (m *MockMasterActionRunMysqlRepository) FindOrNil(ctx context.Context, masterActionRunId int64) (*MasterActionRun, error)

FindOrNil mocks base method.

func (*MockMasterActionRunMysqlRepository) FindOrNilByMasterActionId

func (m *MockMasterActionRunMysqlRepository) FindOrNilByMasterActionId(ctx context.Context, masterActionId int64) (*MasterActionRun, error)

FindOrNilByMasterActionId mocks base method.

func (*MockMasterActionRunMysqlRepository) Update

Update mocks base method.

func (*MockMasterActionRunMysqlRepository) UpdateList

UpdateList mocks base method.

type MockMasterActionRunMysqlRepositoryMockRecorder

type MockMasterActionRunMysqlRepositoryMockRecorder struct {
	// contains filtered or unexported fields
}

MockMasterActionRunMysqlRepositoryMockRecorder is the mock recorder for MockMasterActionRunMysqlRepository.

func (*MockMasterActionRunMysqlRepositoryMockRecorder) Create

func (mr *MockMasterActionRunMysqlRepositoryMockRecorder) Create(ctx, tx, m interface{}) *gomock.Call

Create indicates an expected call of Create.

func (*MockMasterActionRunMysqlRepositoryMockRecorder) CreateList

func (mr *MockMasterActionRunMysqlRepositoryMockRecorder) CreateList(ctx, tx, ms interface{}) *gomock.Call

CreateList indicates an expected call of CreateList.

func (*MockMasterActionRunMysqlRepositoryMockRecorder) Delete

func (mr *MockMasterActionRunMysqlRepositoryMockRecorder) Delete(ctx, tx, m interface{}) *gomock.Call

Delete indicates an expected call of Delete.

func (*MockMasterActionRunMysqlRepositoryMockRecorder) DeleteList

func (mr *MockMasterActionRunMysqlRepositoryMockRecorder) DeleteList(ctx, tx, ms interface{}) *gomock.Call

DeleteList indicates an expected call of DeleteList.

func (*MockMasterActionRunMysqlRepositoryMockRecorder) Find

func (mr *MockMasterActionRunMysqlRepositoryMockRecorder) Find(ctx, masterActionRunId interface{}) *gomock.Call

Find indicates an expected call of Find.

func (*MockMasterActionRunMysqlRepositoryMockRecorder) FindByMasterActionId

func (mr *MockMasterActionRunMysqlRepositoryMockRecorder) FindByMasterActionId(ctx, masterActionId interface{}) *gomock.Call

FindByMasterActionId indicates an expected call of FindByMasterActionId.

func (*MockMasterActionRunMysqlRepositoryMockRecorder) FindList

func (mr *MockMasterActionRunMysqlRepositoryMockRecorder) FindList(ctx interface{}) *gomock.Call

FindList indicates an expected call of FindList.

func (*MockMasterActionRunMysqlRepositoryMockRecorder) FindListByMasterActionId

func (mr *MockMasterActionRunMysqlRepositoryMockRecorder) FindListByMasterActionId(ctx, masterActionId interface{}) *gomock.Call

FindListByMasterActionId indicates an expected call of FindListByMasterActionId.

func (*MockMasterActionRunMysqlRepositoryMockRecorder) FindOrNil

func (mr *MockMasterActionRunMysqlRepositoryMockRecorder) FindOrNil(ctx, masterActionRunId interface{}) *gomock.Call

FindOrNil indicates an expected call of FindOrNil.

func (*MockMasterActionRunMysqlRepositoryMockRecorder) FindOrNilByMasterActionId

func (mr *MockMasterActionRunMysqlRepositoryMockRecorder) FindOrNilByMasterActionId(ctx, masterActionId interface{}) *gomock.Call

FindOrNilByMasterActionId indicates an expected call of FindOrNilByMasterActionId.

func (*MockMasterActionRunMysqlRepositoryMockRecorder) Update

func (mr *MockMasterActionRunMysqlRepositoryMockRecorder) Update(ctx, tx, m interface{}) *gomock.Call

Update indicates an expected call of Update.

func (*MockMasterActionRunMysqlRepositoryMockRecorder) UpdateList

func (mr *MockMasterActionRunMysqlRepositoryMockRecorder) UpdateList(ctx, tx, ms interface{}) *gomock.Call

UpdateList indicates an expected call of UpdateList.

Jump to

Keyboard shortcuts

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