mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-01 13:34:20 +01:00
Fix API, container and kata implementations and unit tests to support the new persist API Signed-off-by: Julio Montes <julio.montes@intel.com>
16 lines
250 B
Go
16 lines
250 B
Go
// Copyright (c) 2018 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package virtcontainers
|
|
|
|
import "testing"
|
|
|
|
func TestKataProxyStart(t *testing.T) {
|
|
agent := &kataAgent{}
|
|
proxy := &kataProxy{}
|
|
|
|
testProxyStart(t, agent, proxy)
|
|
}
|