github.com/adityamillind98/moby@v23.0.0-rc.4+incompatible/integration-cli/docker_cli_network_test.go (about)

     1  package main
     2  
     3  import (
     4  	"net/http/httptest"
     5  	"testing"
     6  
     7  	"github.com/docker/docker/integration-cli/daemon"
     8  )
     9  
    10  type DockerCLINetworkSuite struct {
    11  	ds *DockerSuite
    12  }
    13  
    14  func (s *DockerCLINetworkSuite) TearDownTest(c *testing.T) {
    15  	s.ds.TearDownTest(c)
    16  }
    17  
    18  func (s *DockerCLINetworkSuite) OnTimeout(c *testing.T) {
    19  	s.ds.OnTimeout(c)
    20  }
    21  
    22  type DockerNetworkSuite struct {
    23  	server *httptest.Server
    24  	ds     *DockerSuite
    25  	d      *daemon.Daemon
    26  }