(t *testing.T)
| 32 | } |
| 33 | |
| 34 | func TestCreateContainerWithoutMetadata(t *testing.T) { |
| 35 | sb, sbConfig := PodSandboxConfigWithCleanup(t, "sandbox", "container-create") |
| 36 | config := &runtime.ContainerConfig{} |
| 37 | _, err := runtimeService.CreateContainer(sb, config, sbConfig) |
| 38 | require.Error(t, err) |
| 39 | _, err = runtimeService.Status() |
| 40 | require.NoError(t, err) |
| 41 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…