(t *testing.T)
| 59 | } |
| 60 | |
| 61 | func TestUpExitCodeFromContainerKilled(t *testing.T) { |
| 62 | c := NewParallelCLI(t) |
| 63 | const projectName = "e2e-exit-code-from-kill" |
| 64 | |
| 65 | res := c.RunDockerComposeCmdNoCheck(t, "-f", "fixtures/start-fail/start-depends_on-long-lived.yaml", "--project-name", projectName, "up", "--menu=false", "--exit-code-from=test") |
| 66 | res.Assert(t, icmd.Expected{ExitCode: 143}) |
| 67 | |
| 68 | c.RunDockerComposeCmd(t, "--project-name", projectName, "down", "--remove-orphans") |
| 69 | } |
| 70 | |
| 71 | func TestPortRange(t *testing.T) { |
| 72 | c := NewParallelCLI(t) |
nothing calls this directly
no test coverage detected