-
Notifications
You must be signed in to change notification settings - Fork 0
/
mock_rsync.go
51 lines (41 loc) · 1.4 KB
/
mock_rsync.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
// +build simulation
// Code generated by MockGen. DO NOT EDIT.
// Source: rsync.go
// Package main is a generated GoMock package.
package main
import (
reflect "reflect"
gomock "github.com/golang/mock/gomock"
)
// MockRsyncUploader is a mock of RsyncUploader interface
type MockRsyncUploader struct {
ctrl *gomock.Controller
recorder *MockRsyncUploaderMockRecorder
}
// MockRsyncUploaderMockRecorder is the mock recorder for MockRsyncUploader
type MockRsyncUploaderMockRecorder struct {
mock *MockRsyncUploader
}
// NewMockRsyncUploader creates a new mock instance
func NewMockRsyncUploader(ctrl *gomock.Controller) *MockRsyncUploader {
mock := &MockRsyncUploader{ctrl: ctrl}
mock.recorder = &MockRsyncUploaderMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
func (m *MockRsyncUploader) EXPECT() *MockRsyncUploaderMockRecorder {
return m.recorder
}
// Upload mocks base method
func (m *MockRsyncUploader) Upload(cmd Cmd) (string, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Upload", cmd)
ret0, _ := ret[0].(string)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// Upload indicates an expected call of Upload
func (mr *MockRsyncUploaderMockRecorder) Upload(cmd interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Upload", reflect.TypeOf((*MockRsyncUploader)(nil).Upload), cmd)
}