github.com/kata-containers/runtime@v0.0.0-20210505125100-04f29832a923/virtcontainers/kata_proxy_test.go (about)

     1  // Copyright (c) 2018 Intel Corporation
     2  //
     3  // SPDX-License-Identifier: Apache-2.0
     4  //
     5  
     6  package virtcontainers
     7  
     8  import "testing"
     9  
    10  func TestKataProxyStart(t *testing.T) {
    11  	agent := &kataAgent{}
    12  	proxy := &kataProxy{}
    13  
    14  	testProxyStart(t, agent, proxy)
    15  }