package ovf import ( "bytes" "testing" "github.com/hashicorp/packer-plugin-sdk/multistep" packersdk "github.com/hashicorp/packer-plugin-sdk/packer" vboxcommon "github.com/hashicorp/packer/builder/virtualbox/common" ) func testState(t *testing.T) multistep.StateBag { state := new(multistep.BasicStateBag) state.Put("driver", new(vboxcommon.DriverMock)) state.Put("ui", &packersdk.BasicUi{ Reader: new(bytes.Buffer), Writer: new(bytes.Buffer), }) return state }