Versions in this module Expand all Collapse all v0 v0.1.0 May 18, 2021 Changes in this version + const PRIORITY_DEFAULT + func Run(t *testing.T, te TestEnvironment) + func RunFile(t *testing.T, te TestEnvironment, file string) + type AfterSetupContainers interface + AfterSetupContainers func() error + type AfterTerminateContainers interface + AfterTerminateContainers func() error + type BeforeSetupContainers interface + BeforeSetupContainers func() error + type BeforeTerminateContainers interface + BeforeTerminateContainers func() error + type ContainerConfig struct + AlwaysPullImage bool + Commands []string + LabelEnv map[string]string + LabelProp map[string]string + Name string + Ports map[string]string + Priority int + Service *Service + ShowLog bool + Volumes map[string]string + type ContainerTestEnvironment struct + func (d *ContainerTestEnvironment) DockerCompose() DockerCompose + func (d *ContainerTestEnvironment) Fatal(args ...interface{}) + func (d *ContainerTestEnvironment) Fatalf(format string, args ...interface{}) + func (d *ContainerTestEnvironment) File() string + func (d *ContainerTestEnvironment) Log(format string) + func (d *ContainerTestEnvironment) Logf(format string, args ...interface{}) + func (d *ContainerTestEnvironment) Service(name string) (*DockerService, bool) + func (d *ContainerTestEnvironment) ServicePort(name, port string) int + func (d *ContainerTestEnvironment) SetupSuite() + func (d *ContainerTestEnvironment) TearDownSuite() + type DockerCompose struct + Services map[string]*Service + Version string + type DockerService struct + func (d *DockerService) Accept(l testcontainers.Log) + func (d *DockerService) Port(ctx context.Context, port string) (int, error) + type Log struct + type Port struct + type Service struct + Command []string + ContainerName string + Environment map[string]string + Image string + Labels []string + Networks []string + Ports []string + Volumes []string + type TestEnvironment interface + type Wait struct