github.com/StackPointCloud/packer@v0.10.2-0.20180716202532-b28098e0f79b/builder/vmware/common/driver_workstation_unix_test.go (about)

     1  // +build !windows
     2  
     3  package common
     4  
     5  import (
     6  	"testing"
     7  )
     8  
     9  func TestWorkstationVersion_ws14(t *testing.T) {
    10  	input := `VMware Workstation Information:
    11  VMware Workstation 14.1.1 build-7528167 Release`
    12  	if err := workstationTestVersion("10", input); err != nil {
    13  		t.Fatal(err)
    14  	}
    15  }