mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-02 05:54:26 +01:00
Reworked `TestCCProxyStart` to create a generic `testProxyStart()` that is now used for testing both CC and Kata proxies. Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
18 lines
270 B
Go
18 lines
270 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, KataProxyType)
|
|
}
|