github.com/koko1123/flow-go-1@v0.29.6/network/mocknetwork/basic_resolver.go (about)

     1  // Code generated by mockery v2.13.1. DO NOT EDIT.
     2  
     3  package mocknetwork
     4  
     5  import (
     6  	context "context"
     7  	net "net"
     8  
     9  	mock "github.com/stretchr/testify/mock"
    10  )
    11  
    12  // BasicResolver is an autogenerated mock type for the BasicResolver type
    13  type BasicResolver struct {
    14  	mock.Mock
    15  }
    16  
    17  // LookupIPAddr provides a mock function with given fields: _a0, _a1
    18  func (_m *BasicResolver) LookupIPAddr(_a0 context.Context, _a1 string) ([]net.IPAddr, error) {
    19  	ret := _m.Called(_a0, _a1)
    20  
    21  	var r0 []net.IPAddr
    22  	if rf, ok := ret.Get(0).(func(context.Context, string) []net.IPAddr); ok {
    23  		r0 = rf(_a0, _a1)
    24  	} else {
    25  		if ret.Get(0) != nil {
    26  			r0 = ret.Get(0).([]net.IPAddr)
    27  		}
    28  	}
    29  
    30  	var r1 error
    31  	if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
    32  		r1 = rf(_a0, _a1)
    33  	} else {
    34  		r1 = ret.Error(1)
    35  	}
    36  
    37  	return r0, r1
    38  }
    39  
    40  // LookupTXT provides a mock function with given fields: _a0, _a1
    41  func (_m *BasicResolver) LookupTXT(_a0 context.Context, _a1 string) ([]string, error) {
    42  	ret := _m.Called(_a0, _a1)
    43  
    44  	var r0 []string
    45  	if rf, ok := ret.Get(0).(func(context.Context, string) []string); ok {
    46  		r0 = rf(_a0, _a1)
    47  	} else {
    48  		if ret.Get(0) != nil {
    49  			r0 = ret.Get(0).([]string)
    50  		}
    51  	}
    52  
    53  	var r1 error
    54  	if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
    55  		r1 = rf(_a0, _a1)
    56  	} else {
    57  		r1 = ret.Error(1)
    58  	}
    59  
    60  	return r0, r1
    61  }
    62  
    63  type mockConstructorTestingTNewBasicResolver interface {
    64  	mock.TestingT
    65  	Cleanup(func())
    66  }
    67  
    68  // NewBasicResolver creates a new instance of BasicResolver. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
    69  func NewBasicResolver(t mockConstructorTestingTNewBasicResolver) *BasicResolver {
    70  	mock := &BasicResolver{}
    71  	mock.Mock.Test(t)
    72  
    73  	t.Cleanup(func() { mock.AssertExpectations(t) })
    74  
    75  	return mock
    76  }