Documentation
¶
Overview ¶
Package mock_androidapi is a generated GoMock package.
Package mock_androidapi is a generated GoMock package.
Package mock_androidapi is a generated GoMock package.
Index ¶
- type MockInvocationService
- func (m *MockInvocationService) EXPECT() *MockInvocationServiceMockRecorder
- func (m *MockInvocationService) Get(ctx context.Context, resourceID string) (*androidbuildinternal.Invocation, error)
- func (m *MockInvocationService) Insert(invocation *androidbuildinternal.Invocation) (*androidbuildinternal.Invocation, error)
- func (m *MockInvocationService) List(ctx context.Context, invocationID string, ...) (*androidbuildinternal.InvocationListResponse, error)
- func (m *MockInvocationService) Patch(resourceID string, invocation *androidbuildinternal.Invocation) (*androidbuildinternal.Invocation, error)
- func (m *MockInvocationService) Update(resourceID string, invocation *androidbuildinternal.Invocation) (*androidbuildinternal.Invocation, error)
- type MockInvocationServiceMockRecorder
- func (mr *MockInvocationServiceMockRecorder) Get(ctx, resourceID interface{}) *gomock.Call
- func (mr *MockInvocationServiceMockRecorder) Insert(invocation interface{}) *gomock.Call
- func (mr *MockInvocationServiceMockRecorder) List(ctx, invocationID, options interface{}) *gomock.Call
- func (mr *MockInvocationServiceMockRecorder) Patch(resourceID, invocation interface{}) *gomock.Call
- func (mr *MockInvocationServiceMockRecorder) Update(resourceID, invocation interface{}) *gomock.Call
- type MockTestResultService
- func (m *MockTestResultService) BatchInsert(ctx context.Context, invocationID string, ...) (*androidbuildinternal.TestResultBatchInsertResponse, error)
- func (m *MockTestResultService) EXPECT() *MockTestResultServiceMockRecorder
- func (m *MockTestResultService) Get(resourceID int64) (*androidbuildinternal.TestResult, error)
- func (m *MockTestResultService) Insert(testResult *androidbuildinternal.TestResult) (*androidbuildinternal.TestResult, error)
- func (m *MockTestResultService) List(ctx context.Context, invocationID string, ...) (*androidbuildinternal.TestResultListResponse, error)
- func (m *MockTestResultService) Update(resourceID int64, testResult *androidbuildinternal.TestResult) (*androidbuildinternal.TestResult, error)
- type MockTestResultServiceMockRecorder
- func (mr *MockTestResultServiceMockRecorder) BatchInsert(ctx, invocationID, request interface{}) *gomock.Call
- func (mr *MockTestResultServiceMockRecorder) Get(resourceID interface{}) *gomock.Call
- func (mr *MockTestResultServiceMockRecorder) Insert(testResult interface{}) *gomock.Call
- func (mr *MockTestResultServiceMockRecorder) List(ctx, invocationID, options interface{}) *gomock.Call
- func (mr *MockTestResultServiceMockRecorder) Update(resourceID, testResult interface{}) *gomock.Call
- type MockWorkUnitService
- func (m *MockWorkUnitService) EXPECT() *MockWorkUnitServiceMockRecorder
- func (m *MockWorkUnitService) Get(resourceID string) (*androidbuildinternal.WorkUnit, error)
- func (m *MockWorkUnitService) Insert(workunit *androidbuildinternal.WorkUnit) (*androidbuildinternal.WorkUnit, error)
- func (m *MockWorkUnitService) List(ctx context.Context, invocationID string, ...) (*androidbuildinternal.WorkUnitListResponse, error)
- func (m *MockWorkUnitService) Patch(resourceID string, workunit *androidbuildinternal.WorkUnit) (*androidbuildinternal.WorkUnit, error)
- func (m *MockWorkUnitService) Update(resourceID string, workunit *androidbuildinternal.WorkUnit) (*androidbuildinternal.WorkUnit, error)
- type MockWorkUnitServiceMockRecorder
- func (mr *MockWorkUnitServiceMockRecorder) Get(resourceID interface{}) *gomock.Call
- func (mr *MockWorkUnitServiceMockRecorder) Insert(workunit interface{}) *gomock.Call
- func (mr *MockWorkUnitServiceMockRecorder) List(ctx, invocationID, options interface{}) *gomock.Call
- func (mr *MockWorkUnitServiceMockRecorder) Patch(resourceID, workunit interface{}) *gomock.Call
- func (mr *MockWorkUnitServiceMockRecorder) Update(resourceID, workunit interface{}) *gomock.Call
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MockInvocationService ¶
type MockInvocationService struct {
// contains filtered or unexported fields
}
MockInvocationService is a mock of InvocationService interface.
func NewMockInvocationService ¶
func NewMockInvocationService(ctrl *gomock.Controller) *MockInvocationService
NewMockInvocationService creates a new mock instance.
func (*MockInvocationService) EXPECT ¶
func (m *MockInvocationService) EXPECT() *MockInvocationServiceMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockInvocationService) Get ¶
func (m *MockInvocationService) Get(ctx context.Context, resourceID string) (*androidbuildinternal.Invocation, error)
Get mocks base method.
func (*MockInvocationService) Insert ¶
func (m *MockInvocationService) Insert(invocation *androidbuildinternal.Invocation) (*androidbuildinternal.Invocation, error)
Insert mocks base method.
func (*MockInvocationService) List ¶
func (m *MockInvocationService) List(ctx context.Context, invocationID string, options androidapi.AndroidBuildAPIOptions) (*androidbuildinternal.InvocationListResponse, error)
List mocks base method.
func (*MockInvocationService) Patch ¶
func (m *MockInvocationService) Patch(resourceID string, invocation *androidbuildinternal.Invocation) (*androidbuildinternal.Invocation, error)
Patch mocks base method.
func (*MockInvocationService) Update ¶
func (m *MockInvocationService) Update(resourceID string, invocation *androidbuildinternal.Invocation) (*androidbuildinternal.Invocation, error)
Update mocks base method.
type MockInvocationServiceMockRecorder ¶
type MockInvocationServiceMockRecorder struct {
// contains filtered or unexported fields
}
MockInvocationServiceMockRecorder is the mock recorder for MockInvocationService.
func (*MockInvocationServiceMockRecorder) Get ¶
func (mr *MockInvocationServiceMockRecorder) Get(ctx, resourceID interface{}) *gomock.Call
Get indicates an expected call of Get.
func (*MockInvocationServiceMockRecorder) Insert ¶
func (mr *MockInvocationServiceMockRecorder) Insert(invocation interface{}) *gomock.Call
Insert indicates an expected call of Insert.
func (*MockInvocationServiceMockRecorder) List ¶
func (mr *MockInvocationServiceMockRecorder) List(ctx, invocationID, options interface{}) *gomock.Call
List indicates an expected call of List.
func (*MockInvocationServiceMockRecorder) Patch ¶
func (mr *MockInvocationServiceMockRecorder) Patch(resourceID, invocation interface{}) *gomock.Call
Patch indicates an expected call of Patch.
func (*MockInvocationServiceMockRecorder) Update ¶
func (mr *MockInvocationServiceMockRecorder) Update(resourceID, invocation interface{}) *gomock.Call
Update indicates an expected call of Update.
type MockTestResultService ¶
type MockTestResultService struct {
// contains filtered or unexported fields
}
MockTestResultService is a mock of TestResultService interface.
func NewMockTestResultService ¶
func NewMockTestResultService(ctrl *gomock.Controller) *MockTestResultService
NewMockTestResultService creates a new mock instance.
func (*MockTestResultService) BatchInsert ¶
func (m *MockTestResultService) BatchInsert(ctx context.Context, invocationID string, request *androidbuildinternal.TestResultBatchInsertRequest) (*androidbuildinternal.TestResultBatchInsertResponse, error)
BatchInsert mocks base method.
func (*MockTestResultService) EXPECT ¶
func (m *MockTestResultService) EXPECT() *MockTestResultServiceMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockTestResultService) Get ¶
func (m *MockTestResultService) Get(resourceID int64) (*androidbuildinternal.TestResult, error)
Get mocks base method.
func (*MockTestResultService) Insert ¶
func (m *MockTestResultService) Insert(testResult *androidbuildinternal.TestResult) (*androidbuildinternal.TestResult, error)
Insert mocks base method.
func (*MockTestResultService) List ¶
func (m *MockTestResultService) List(ctx context.Context, invocationID string, options androidapi.AndroidBuildAPIOptions) (*androidbuildinternal.TestResultListResponse, error)
List mocks base method.
func (*MockTestResultService) Update ¶
func (m *MockTestResultService) Update(resourceID int64, testResult *androidbuildinternal.TestResult) (*androidbuildinternal.TestResult, error)
Update mocks base method.
type MockTestResultServiceMockRecorder ¶
type MockTestResultServiceMockRecorder struct {
// contains filtered or unexported fields
}
MockTestResultServiceMockRecorder is the mock recorder for MockTestResultService.
func (*MockTestResultServiceMockRecorder) BatchInsert ¶
func (mr *MockTestResultServiceMockRecorder) BatchInsert(ctx, invocationID, request interface{}) *gomock.Call
BatchInsert indicates an expected call of BatchInsert.
func (*MockTestResultServiceMockRecorder) Get ¶
func (mr *MockTestResultServiceMockRecorder) Get(resourceID interface{}) *gomock.Call
Get indicates an expected call of Get.
func (*MockTestResultServiceMockRecorder) Insert ¶
func (mr *MockTestResultServiceMockRecorder) Insert(testResult interface{}) *gomock.Call
Insert indicates an expected call of Insert.
func (*MockTestResultServiceMockRecorder) List ¶
func (mr *MockTestResultServiceMockRecorder) List(ctx, invocationID, options interface{}) *gomock.Call
List indicates an expected call of List.
func (*MockTestResultServiceMockRecorder) Update ¶
func (mr *MockTestResultServiceMockRecorder) Update(resourceID, testResult interface{}) *gomock.Call
Update indicates an expected call of Update.
type MockWorkUnitService ¶
type MockWorkUnitService struct {
// contains filtered or unexported fields
}
MockWorkUnitService is a mock of WorkUnitService interface.
func NewMockWorkUnitService ¶
func NewMockWorkUnitService(ctrl *gomock.Controller) *MockWorkUnitService
NewMockWorkUnitService creates a new mock instance.
func (*MockWorkUnitService) EXPECT ¶
func (m *MockWorkUnitService) EXPECT() *MockWorkUnitServiceMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockWorkUnitService) Get ¶
func (m *MockWorkUnitService) Get(resourceID string) (*androidbuildinternal.WorkUnit, error)
Get mocks base method.
func (*MockWorkUnitService) Insert ¶
func (m *MockWorkUnitService) Insert(workunit *androidbuildinternal.WorkUnit) (*androidbuildinternal.WorkUnit, error)
Insert mocks base method.
func (*MockWorkUnitService) List ¶
func (m *MockWorkUnitService) List(ctx context.Context, invocationID string, options androidapi.AndroidBuildAPIOptions) (*androidbuildinternal.WorkUnitListResponse, error)
List mocks base method.
func (*MockWorkUnitService) Patch ¶
func (m *MockWorkUnitService) Patch(resourceID string, workunit *androidbuildinternal.WorkUnit) (*androidbuildinternal.WorkUnit, error)
Patch mocks base method.
func (*MockWorkUnitService) Update ¶
func (m *MockWorkUnitService) Update(resourceID string, workunit *androidbuildinternal.WorkUnit) (*androidbuildinternal.WorkUnit, error)
Update mocks base method.
type MockWorkUnitServiceMockRecorder ¶
type MockWorkUnitServiceMockRecorder struct {
// contains filtered or unexported fields
}
MockWorkUnitServiceMockRecorder is the mock recorder for MockWorkUnitService.
func (*MockWorkUnitServiceMockRecorder) Get ¶
func (mr *MockWorkUnitServiceMockRecorder) Get(resourceID interface{}) *gomock.Call
Get indicates an expected call of Get.
func (*MockWorkUnitServiceMockRecorder) Insert ¶
func (mr *MockWorkUnitServiceMockRecorder) Insert(workunit interface{}) *gomock.Call
Insert indicates an expected call of Insert.
func (*MockWorkUnitServiceMockRecorder) List ¶
func (mr *MockWorkUnitServiceMockRecorder) List(ctx, invocationID, options interface{}) *gomock.Call
List indicates an expected call of List.
func (*MockWorkUnitServiceMockRecorder) Patch ¶
func (mr *MockWorkUnitServiceMockRecorder) Patch(resourceID, workunit interface{}) *gomock.Call
Patch indicates an expected call of Patch.
func (*MockWorkUnitServiceMockRecorder) Update ¶
func (mr *MockWorkUnitServiceMockRecorder) Update(resourceID, workunit interface{}) *gomock.Call
Update indicates an expected call of Update.