-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
contract_submitter.go
47 lines (36 loc) · 1.26 KB
/
contract_submitter.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
// Code generated by mockery v2.38.0. DO NOT EDIT.
package mocks
import (
context "context"
big "math/big"
mock "github.com/stretchr/testify/mock"
)
// ContractSubmitter is an autogenerated mock type for the ContractSubmitter type
type ContractSubmitter struct {
mock.Mock
}
// Submit provides a mock function with given fields: ctx, roundID, submission, idempotencyKey
func (_m *ContractSubmitter) Submit(ctx context.Context, roundID *big.Int, submission *big.Int, idempotencyKey *string) error {
ret := _m.Called(ctx, roundID, submission, idempotencyKey)
if len(ret) == 0 {
panic("no return value specified for Submit")
}
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, *big.Int, *big.Int, *string) error); ok {
r0 = rf(ctx, roundID, submission, idempotencyKey)
} else {
r0 = ret.Error(0)
}
return r0
}
// NewContractSubmitter creates a new instance of ContractSubmitter. 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 NewContractSubmitter(t interface {
mock.TestingT
Cleanup(func())
}) *ContractSubmitter {
mock := &ContractSubmitter{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}