-
Notifications
You must be signed in to change notification settings - Fork 3
/
version.go
62 lines (51 loc) · 1.71 KB
/
version.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
58
59
60
61
62
// Code generated by MockGen. DO NOT EDIT.
// Source: castai-agent/internal/services/version (interfaces: Interface)
// Package mock_version is a generated GoMock package.
package mock_version
import (
reflect "reflect"
gomock "github.com/golang/mock/gomock"
)
// MockInterface is a mock of Interface interface.
type MockInterface struct {
ctrl *gomock.Controller
recorder *MockInterfaceMockRecorder
}
// MockInterfaceMockRecorder is the mock recorder for MockInterface.
type MockInterfaceMockRecorder struct {
mock *MockInterface
}
// NewMockInterface creates a new mock instance.
func NewMockInterface(ctrl *gomock.Controller) *MockInterface {
mock := &MockInterface{ctrl: ctrl}
mock.recorder = &MockInterfaceMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockInterface) EXPECT() *MockInterfaceMockRecorder {
return m.recorder
}
// Full mocks base method.
func (m *MockInterface) Full() string {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Full")
ret0, _ := ret[0].(string)
return ret0
}
// Full indicates an expected call of Full.
func (mr *MockInterfaceMockRecorder) Full() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Full", reflect.TypeOf((*MockInterface)(nil).Full))
}
// MinorInt mocks base method.
func (m *MockInterface) MinorInt() int {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "MinorInt")
ret0, _ := ret[0].(int)
return ret0
}
// MinorInt indicates an expected call of MinorInt.
func (mr *MockInterfaceMockRecorder) MinorInt() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "MinorInt", reflect.TypeOf((*MockInterface)(nil).MinorInt))
}