37 lines
724 B
Go
37 lines
724 B
Go
// Code generated by mockery v2.3.0. DO NOT EDIT.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
resource "github.com/cloudskiff/driftctl/pkg/resource"
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// Supplier is an autogenerated mock type for the Supplier type
|
|
type Supplier struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// Resources provides a mock function with given fields:
|
|
func (_m *Supplier) Resources() ([]resource.Resource, error) {
|
|
ret := _m.Called()
|
|
|
|
var r0 []resource.Resource
|
|
if rf, ok := ret.Get(0).(func() []resource.Resource); ok {
|
|
r0 = rf()
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]resource.Resource)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func() error); ok {
|
|
r1 = rf()
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|