summaryrefslogtreecommitdiff
path: root/integration-cli/docker_cli_network_test.go
diff options
context:
space:
mode:
authorCrazyMax <crazy-max@users.noreply.github.com>2022-06-16 23:32:10 +0200
committerCrazyMax <crazy-max@users.noreply.github.com>2022-06-17 10:59:04 +0200
commit0e6a1b95961119d485af17e719ec3e1c68ca9ec3 (patch)
tree962fb587cf69e56d6a00026a470f0326d2d7466d /integration-cli/docker_cli_network_test.go
parent7ed823ead91938e5cc8de7a42ff93a25abe73e7e (diff)
downloaddocker-0e6a1b95961119d485af17e719ec3e1c68ca9ec3.tar.gz
integration-cli: split DockerSuite into subsequent build suites
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
Diffstat (limited to 'integration-cli/docker_cli_network_test.go')
-rw-r--r--integration-cli/docker_cli_network_test.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/integration-cli/docker_cli_network_test.go b/integration-cli/docker_cli_network_test.go
index ad1c95876f..ebe19d0af7 100644
--- a/integration-cli/docker_cli_network_test.go
+++ b/integration-cli/docker_cli_network_test.go
@@ -2,10 +2,23 @@ package main
import (
"net/http/httptest"
+ "testing"
"github.com/docker/docker/integration-cli/daemon"
)
+type DockerCLINetworkSuite struct {
+ ds *DockerSuite
+}
+
+func (s *DockerCLINetworkSuite) TearDownTest(c *testing.T) {
+ s.ds.TearDownTest(c)
+}
+
+func (s *DockerCLINetworkSuite) OnTimeout(c *testing.T) {
+ s.ds.OnTimeout(c)
+}
+
type DockerNetworkSuite struct {
server *httptest.Server
ds *DockerSuite