driftctl/pkg/terraform/mock_ResourceFactory.go

52 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.
package terraform
import (
2021-04-29 15:17:55 +00:00
"github.com/cloudskiff/driftctl/pkg/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-04-29 15:17:55 +00:00
// CreateAbstractResource provides a mock function with given fields: data, id, ty
func (_m *MockResourceFactory) CreateAbstractResource(data map[string]interface{}, id string, ty string) resource.AbstractResource {
ret := _m.Called(data, id, ty)
var r0 resource.AbstractResource
if rf, ok := ret.Get(0).(func(map[string]interface{}, string, string) resource.AbstractResource); ok {
r0 = rf(data, id, ty)
} else {
r0 = ret.Get(0).(resource.AbstractResource)
}
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
}