30 lines
858 B
Go
30 lines
858 B
Go
// Code generated by mockery v0.0.0-dev. DO NOT EDIT.
|
|
|
|
package repository
|
|
|
|
import (
|
|
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork"
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// mockPublicIPAddressesClient is an autogenerated mock type for the publicIPAddressesClient type
|
|
type mockPublicIPAddressesClient struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// ListAll provides a mock function with given fields: options
|
|
func (_m *mockPublicIPAddressesClient) ListAll(options *armnetwork.PublicIPAddressesListAllOptions) publicIPAddressesListAllPager {
|
|
ret := _m.Called(options)
|
|
|
|
var r0 publicIPAddressesListAllPager
|
|
if rf, ok := ret.Get(0).(func(*armnetwork.PublicIPAddressesListAllOptions) publicIPAddressesListAllPager); ok {
|
|
r0 = rf(options)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(publicIPAddressesListAllPager)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|