github.com/rothwerx/packer@v0.9.0/builder/vmware/common/host_ip_vmnetnatconf_test.go (about) 1 package common 2 3 import "testing" 4 5 func TestVMnetNatConfIPFinder_Impl(t *testing.T) { 6 var raw interface{} 7 raw = &VMnetNatConfIPFinder{} 8 if _, ok := raw.(HostIPFinder); !ok { 9 t.Fatalf("VMnetNatConfIPFinder is not a host IP finder") 10 } 11 }