This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
get_target_interface.go
57 lines (44 loc) · 1.69 KB
/
get_target_interface.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Code generated by mockery v1.0.1. DO NOT EDIT.
package mocks
import (
context "context"
executioncluster "github.com/flyteorg/flyteadmin/pkg/executioncluster"
mock "github.com/stretchr/testify/mock"
)
// GetTargetInterface is an autogenerated mock type for the GetTargetInterface type
type GetTargetInterface struct {
mock.Mock
}
type GetTargetInterface_GetTarget struct {
*mock.Call
}
func (_m GetTargetInterface_GetTarget) Return(_a0 *executioncluster.ExecutionTarget, _a1 error) *GetTargetInterface_GetTarget {
return &GetTargetInterface_GetTarget{Call: _m.Call.Return(_a0, _a1)}
}
func (_m *GetTargetInterface) OnGetTarget(_a0 context.Context, _a1 *executioncluster.ExecutionTargetSpec) *GetTargetInterface_GetTarget {
c := _m.On("GetTarget", _a0, _a1)
return &GetTargetInterface_GetTarget{Call: c}
}
func (_m *GetTargetInterface) OnGetTargetMatch(matchers ...interface{}) *GetTargetInterface_GetTarget {
c := _m.On("GetTarget", matchers...)
return &GetTargetInterface_GetTarget{Call: c}
}
// GetTarget provides a mock function with given fields: _a0, _a1
func (_m *GetTargetInterface) GetTarget(_a0 context.Context, _a1 *executioncluster.ExecutionTargetSpec) (*executioncluster.ExecutionTarget, error) {
ret := _m.Called(_a0, _a1)
var r0 *executioncluster.ExecutionTarget
if rf, ok := ret.Get(0).(func(context.Context, *executioncluster.ExecutionTargetSpec) *executioncluster.ExecutionTarget); ok {
r0 = rf(_a0, _a1)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*executioncluster.ExecutionTarget)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, *executioncluster.ExecutionTargetSpec) error); ok {
r1 = rf(_a0, _a1)
} else {
r1 = ret.Error(1)
}
return r0, r1
}