github.com/raghuse92/packer@v1.3.2/builder/oracle/oci/artifact_test.go (about) 1 package oci 2 3 import ( 4 "testing" 5 6 "github.com/hashicorp/packer/packer" 7 ) 8 9 func TestArtifactImpl(t *testing.T) { 10 var raw interface{} 11 raw = &Artifact{} 12 if _, ok := raw.(packer.Artifact); !ok { 13 t.Fatalf("Artifact should be artifact") 14 } 15 }