mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-24 01:24: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>
17 lines
239 B
Go
17 lines
239 B
Go
// Copyright (c) 2017 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package virtcontainers
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCCProxyStart(t *testing.T) {
|
|
proxy := &ccProxy{}
|
|
|
|
testProxyStart(t, nil, proxy, CCProxyType)
|
|
}
|