github.com/altoros/juju-vmware@v0.0.0-20150312064031-f19ae857ccca/container/kvm/export_test.go (about) 1 package kvm 2 3 // This file exports internal package implementations so that tests 4 // can utilize them to mock behavior. 5 6 var KVMPath = &kvmPath 7 8 // Used to export the parameters used to call Start on the KVM Container 9 var TestStartParams = &startParams 10 11 func NewEmptyKvmContainer() *kvmContainer { 12 return &kvmContainer{} 13 }