package packer // MockArtifact is an implementation of Artifact that can be used for tests. type MockArtifact struct { BuilderIdValue string FilesValue []string IdValue string DestroyCalled bool } func (a *MockArtifact) BuilderId() string { if a.BuilderIdValue == "" { return "bid" } return a.BuilderIdValue } func (a *MockArtifact) Files() []string { if a.FilesValue == nil { return []string{"a", "b"} } return a.FilesValue } func (a *MockArtifact) Id() string { id := a.IdValue if id == "" { id = "id" } return id } func (*MockArtifact) String() string { return "string" } func (a *MockArtifact) Destroy() error { a.DestroyCalled = true return nil }