(ctx context.Context, config *containertypes.Config, hostConfig *containertypes.HostConfig, networkingConfig *networktypes.NetworkingConfig, pspecs *specs.Platform, containerName string)
| 143 | } |
| 144 | |
| 145 | func (m MockClient) ContainerCreate(ctx context.Context, config *containertypes.Config, hostConfig *containertypes.HostConfig, networkingConfig *networktypes.NetworkingConfig, pspecs *specs.Platform, containerName string) (containertypes.CreateResponse, error) { |
| 146 | if m.ContainerCreateFn == nil { |
| 147 | return containertypes.CreateResponse{}, nil |
| 148 | } |
| 149 | return m.ContainerCreateFn(ctx, config, hostConfig, networkingConfig, pspecs, containerName) |
| 150 | } |
| 151 | |
| 152 | func (MockClient) ContainerDiff(_ context.Context, _ string) ([]containertypes.FilesystemChange, error) { |
| 153 | panic("not implemented") |
no outgoing calls
no test coverage detected