removePodSandboxFuzz creates a RemovePodSandboxRequest and passes it to c.RemovePodSandbox
(c fuzzCRIService, f *fuzz.ConsumeFuzzer)
| 391 | // removePodSandboxFuzz creates a RemovePodSandboxRequest and |
| 392 | // passes it to c.RemovePodSandbox |
| 393 | func removePodSandboxFuzz(c fuzzCRIService, f *fuzz.ConsumeFuzzer) error { |
| 394 | r := &runtime.RemovePodSandboxRequest{} |
| 395 | err := f.GenerateStruct(r) |
| 396 | if err != nil { |
| 397 | return err |
| 398 | } |
| 399 | _, _ = c.RemovePodSandbox(context.Background(), r) |
| 400 | reqString := fmt.Sprintf("%+v", r) |
| 401 | logExecution("c.RemovePodSandbox", reqString) |
| 402 | return nil |
| 403 | } |
| 404 | |
| 405 | // runPodSandboxFuzz creates a RunPodSandboxRequest and passes |
| 406 | // it to c.RunPodSandbox |
nothing calls this directly
no test coverage detected
searching dependent graphs…