forked from b2network/cdk-validium-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmock_datacommitteeclientfactory.go
44 lines (34 loc) · 1.27 KB
/
mock_datacommitteeclientfactory.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
// Code generated by mockery v2.22.1. DO NOT EDIT.
package synchronizer
import (
client "github.com/0xPolygon/cdk-data-availability/client"
mock "github.com/stretchr/testify/mock"
)
// dataCommitteeClientFactoryMock is an autogenerated mock type for the ClientFactoryInterface type
type dataCommitteeClientFactoryMock struct {
mock.Mock
}
// New provides a mock function with given fields: url
func (_m *dataCommitteeClientFactoryMock) New(url string) client.ClientInterface {
ret := _m.Called(url)
var r0 client.ClientInterface
if rf, ok := ret.Get(0).(func(string) client.ClientInterface); ok {
r0 = rf(url)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(client.ClientInterface)
}
}
return r0
}
type mockConstructorTestingTnewDataCommitteeClientFactoryMock interface {
mock.TestingT
Cleanup(func())
}
// newDataCommitteeClientFactoryMock creates a new instance of dataCommitteeClientFactoryMock. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func newDataCommitteeClientFactoryMock(t mockConstructorTestingTnewDataCommitteeClientFactoryMock) *dataCommitteeClientFactoryMock {
mock := &dataCommitteeClientFactoryMock{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}