forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
capability_provider.go
43 lines (34 loc) · 1.16 KB
/
capability_provider.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
// Code generated by mockery v2.34.2. DO NOT EDIT.
package mocks
import (
channelconfig "github.com/ZihuaZhang/fabric/common/channelconfig"
mock "github.com/stretchr/testify/mock"
)
// CapabilityProvider is an autogenerated mock type for the CapabilityProvider type
type CapabilityProvider struct {
mock.Mock
}
// Capabilities provides a mock function with given fields:
func (_m *CapabilityProvider) Capabilities() channelconfig.ApplicationCapabilities {
ret := _m.Called()
var r0 channelconfig.ApplicationCapabilities
if rf, ok := ret.Get(0).(func() channelconfig.ApplicationCapabilities); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(channelconfig.ApplicationCapabilities)
}
}
return r0
}
// NewCapabilityProvider creates a new instance of CapabilityProvider. 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 NewCapabilityProvider(t interface {
mock.TestingT
Cleanup(func())
}) *CapabilityProvider {
mock := &CapabilityProvider{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}