()
| 231 | } |
| 232 | |
| 233 | func (d *dockerContainer) start() { |
| 234 | d.t.Helper() |
| 235 | d.t.Logf("Starting container %s...", d.containerID) |
| 236 | if err := d.client.ContainerStart(context.Background(), d.containerID, containertypes.StartOptions{}); err != nil { |
| 237 | d.t.Fatalf("failed to start container %s (%v)", d.containerID, err) |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | func (d *dockerContainer) remove() { |
| 242 | d.t.Helper() |
no test coverage detected