github.phpd.cn/hashicorp/packer@v1.3.2/builder/vmware/iso/artifact_test.go (about) 1 package iso 2 3 import ( 4 "testing" 5 6 "github.com/hashicorp/packer/packer" 7 ) 8 9 func TestArtifact_Impl(t *testing.T) { 10 var raw interface{} 11 raw = &Artifact{} 12 if _, ok := raw.(packer.Artifact); !ok { 13 t.Fatal("Artifact must be a proper artifact") 14 } 15 }