driftctl/pkg/resource/mock_ResourceFactory.go

54 lines
1.3 KiB
Go
Raw Normal View History

2021-03-29 16:10:50 +00:00
// Code generated by mockery v2.3.0. DO NOT EDIT.
2022-07-21 08:37:03 +00:00
package resource
2021-03-29 16:10:50 +00:00
import (
"github.com/snyk/driftctl/enumeration/resource"
2021-03-29 16:10:50 +00:00
mock "github.com/stretchr/testify/mock"
cty "github.com/zclconf/go-cty/cty"
)
// MockResourceFactory is an autogenerated mock type for the ResourceFactory type
type MockResourceFactory struct {
mock.Mock
}
2021-05-04 13:03:17 +00:00
// CreateAbstractResource provides a mock function with given fields: ty, id, data
2021-08-09 14:03:04 +00:00
func (_m *MockResourceFactory) CreateAbstractResource(ty string, id string, data map[string]interface{}) *resource.Resource {
2021-05-04 13:03:17 +00:00
ret := _m.Called(ty, id, data)
2021-04-29 15:17:55 +00:00
2021-08-09 14:03:04 +00:00
var r0 *resource.Resource
if rf, ok := ret.Get(0).(func(string, string, map[string]interface{}) *resource.Resource); ok {
2021-05-04 13:03:17 +00:00
r0 = rf(ty, id, data)
2021-04-29 15:17:55 +00:00
} else {
2021-05-04 13:03:17 +00:00
if ret.Get(0) != nil {
2021-08-09 14:03:04 +00:00
r0 = ret.Get(0).(*resource.Resource)
2021-05-04 13:03:17 +00:00
}
2021-04-29 15:17:55 +00:00
}
return r0
}
2021-03-29 16:10:50 +00:00
// CreateResource provides a mock function with given fields: data, ty
func (_m *MockResourceFactory) CreateResource(data interface{}, ty string) (*cty.Value, error) {
ret := _m.Called(data, ty)
var r0 *cty.Value
if rf, ok := ret.Get(0).(func(interface{}, string) *cty.Value); ok {
r0 = rf(data, ty)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*cty.Value)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(interface{}, string) error); ok {
r1 = rf(data, ty)
} else {
r1 = ret.Error(1)
}
return r0, r1
}