Files
moby/integration-cli/docker_api_test.go
2025-12-26 00:27:41 +05:30

19 lines
274 B
Go

package main
import (
"context"
"testing"
)
type DockerAPISuite struct {
ds *DockerSuite
}
func (s *DockerAPISuite) TearDownTest(ctx context.Context, t *testing.T) {
s.ds.TearDownTest(ctx, t)
}
func (s *DockerAPISuite) OnTimeout(t *testing.T) {
s.ds.OnTimeout(t)
}