1
0
mirror of https://github.com/moby/moby.git synced 2025-07-08 19:02:13 +03:00
Files
moby/integration-cli/docker_cli_network_test.go
Matthieu MOREL 9b5d8cd186 fix thelper linter
Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com>
2025-06-05 21:42:05 +00:00

28 lines
473 B
Go

package main
import (
"context"
"net/http/httptest"
"testing"
"github.com/docker/docker/integration-cli/daemon"
)
type DockerCLINetworkSuite struct {
ds *DockerSuite
}
func (s *DockerCLINetworkSuite) TearDownTest(ctx context.Context, t *testing.T) {
s.ds.TearDownTest(ctx, t)
}
func (s *DockerCLINetworkSuite) OnTimeout(t *testing.T) {
s.ds.OnTimeout(t)
}
type DockerNetworkSuite struct {
server *httptest.Server
ds *DockerSuite
d *daemon.Daemon
}