-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmock_Signatory.go
More file actions
52 lines (41 loc) · 964 Bytes
/
mock_Signatory.go
File metadata and controls
52 lines (41 loc) · 964 Bytes
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
package gopwa
import "github.com/stretchr/testify/mock"
// MockSignatory is an autogenerated mock type for the Signatory type
type MockSignatory struct {
mock.Mock
}
// Method provides a mock function with given fields:
func (_m *MockSignatory) Method() string {
ret := _m.Called()
var r0 string
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// Sign provides a mock function with given fields: _a0
func (_m *MockSignatory) Sign(_a0 string) []byte {
ret := _m.Called(_a0)
var r0 []byte
if rf, ok := ret.Get(0).(func(string) []byte); ok {
r0 = rf(_a0)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]byte)
}
}
return r0
}
// Version provides a mock function with given fields:
func (_m *MockSignatory) Version() string {
ret := _m.Called()
var r0 string
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
return r0
}