-
Notifications
You must be signed in to change notification settings - Fork 1
/
mock_JobTrace.go
73 lines (57 loc) · 1.65 KB
/
mock_JobTrace.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
63
64
65
66
67
68
69
70
71
72
73
// Code generated by mockery v1.0.0. DO NOT EDIT.
// This comment works around https://github.com/vektra/mockery/issues/155
package common
import context "context"
import mock "github.com/stretchr/testify/mock"
// MockJobTrace is an autogenerated mock type for the JobTrace type
type MockJobTrace struct {
mock.Mock
}
// Fail provides a mock function with given fields: err, failureReason
func (_m *MockJobTrace) Fail(err error, failureReason JobFailureReason) {
_m.Called(err, failureReason)
}
// IsStdout provides a mock function with given fields:
func (_m *MockJobTrace) IsStdout() bool {
ret := _m.Called()
var r0 bool
if rf, ok := ret.Get(0).(func() bool); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(bool)
}
return r0
}
// SetCancelFunc provides a mock function with given fields: cancelFunc
func (_m *MockJobTrace) SetCancelFunc(cancelFunc context.CancelFunc) {
_m.Called(cancelFunc)
}
// SetFailuresCollector provides a mock function with given fields: fc
func (_m *MockJobTrace) SetFailuresCollector(fc FailuresCollector) {
_m.Called(fc)
}
// SetMasked provides a mock function with given fields: values
func (_m *MockJobTrace) SetMasked(values []string) {
_m.Called(values)
}
// Success provides a mock function with given fields:
func (_m *MockJobTrace) Success() {
_m.Called()
}
// Write provides a mock function with given fields: p
func (_m *MockJobTrace) Write(p []byte) (int, error) {
ret := _m.Called(p)
var r0 int
if rf, ok := ret.Get(0).(func([]byte) int); ok {
r0 = rf(p)
} else {
r0 = ret.Get(0).(int)
}
var r1 error
if rf, ok := ret.Get(1).(func([]byte) error); ok {
r1 = rf(p)
} else {
r1 = ret.Error(1)
}
return r0, r1
}