-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathXcodeVersionReader.go
More file actions
55 lines (44 loc) · 1.24 KB
/
XcodeVersionReader.go
File metadata and controls
55 lines (44 loc) · 1.24 KB
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
// Code generated by mockery v2.53.3. DO NOT EDIT.
package mocks
import (
xcodeversion "github.com/bitrise-io/go-xcode/v2/xcodeversion"
mock "github.com/stretchr/testify/mock"
)
// Reader is an autogenerated mock type for the Reader type
type Reader struct {
mock.Mock
}
// GetVersion provides a mock function with no fields
func (_m *Reader) GetVersion() (xcodeversion.Version, error) {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for GetVersion")
}
var r0 xcodeversion.Version
var r1 error
if rf, ok := ret.Get(0).(func() (xcodeversion.Version, error)); ok {
return rf()
}
if rf, ok := ret.Get(0).(func() xcodeversion.Version); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(xcodeversion.Version)
}
if rf, ok := ret.Get(1).(func() error); ok {
r1 = rf()
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// NewXcodeVersionReader creates a new instance of Reader. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func NewXcodeVersionReader(t interface {
mock.TestingT
Cleanup(func())
}) *Reader {
mock := &Reader{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}