mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 14:35:27 +08:00
96 lines
3.2 KiB
Go
96 lines
3.2 KiB
Go
// Code generated by mockery v2.53.3. DO NOT EDIT.
|
|
|
|
package datacoord
|
|
|
|
import (
|
|
context "context"
|
|
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// MockCollectionTopologyQuerier is an autogenerated mock type for the CollectionTopologyQuerier type
|
|
type MockCollectionTopologyQuerier struct {
|
|
mock.Mock
|
|
}
|
|
|
|
type MockCollectionTopologyQuerier_Expecter struct {
|
|
mock *mock.Mock
|
|
}
|
|
|
|
func (_m *MockCollectionTopologyQuerier) EXPECT() *MockCollectionTopologyQuerier_Expecter {
|
|
return &MockCollectionTopologyQuerier_Expecter{mock: &_m.Mock}
|
|
}
|
|
|
|
// GetCollectionTopology provides a mock function with given fields: ctx, collectionID
|
|
func (_m *MockCollectionTopologyQuerier) GetCollectionTopology(ctx context.Context, collectionID int64) (*CollectionTopology, error) {
|
|
ret := _m.Called(ctx, collectionID)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetCollectionTopology")
|
|
}
|
|
|
|
var r0 *CollectionTopology
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(context.Context, int64) (*CollectionTopology, error)); ok {
|
|
return rf(ctx, collectionID)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(context.Context, int64) *CollectionTopology); ok {
|
|
r0 = rf(ctx, collectionID)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*CollectionTopology)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(context.Context, int64) error); ok {
|
|
r1 = rf(ctx, collectionID)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// MockCollectionTopologyQuerier_GetCollectionTopology_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetCollectionTopology'
|
|
type MockCollectionTopologyQuerier_GetCollectionTopology_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// GetCollectionTopology is a helper method to define mock.On call
|
|
// - ctx context.Context
|
|
// - collectionID int64
|
|
func (_e *MockCollectionTopologyQuerier_Expecter) GetCollectionTopology(ctx interface{}, collectionID interface{}) *MockCollectionTopologyQuerier_GetCollectionTopology_Call {
|
|
return &MockCollectionTopologyQuerier_GetCollectionTopology_Call{Call: _e.mock.On("GetCollectionTopology", ctx, collectionID)}
|
|
}
|
|
|
|
func (_c *MockCollectionTopologyQuerier_GetCollectionTopology_Call) Run(run func(ctx context.Context, collectionID int64)) *MockCollectionTopologyQuerier_GetCollectionTopology_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(context.Context), args[1].(int64))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockCollectionTopologyQuerier_GetCollectionTopology_Call) Return(_a0 *CollectionTopology, _a1 error) *MockCollectionTopologyQuerier_GetCollectionTopology_Call {
|
|
_c.Call.Return(_a0, _a1)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockCollectionTopologyQuerier_GetCollectionTopology_Call) RunAndReturn(run func(context.Context, int64) (*CollectionTopology, error)) *MockCollectionTopologyQuerier_GetCollectionTopology_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// NewMockCollectionTopologyQuerier creates a new instance of MockCollectionTopologyQuerier. 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 NewMockCollectionTopologyQuerier(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *MockCollectionTopologyQuerier {
|
|
mock := &MockCollectionTopologyQuerier{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|