(apiName, request string)
| 173 | } |
| 174 | |
| 175 | func logExecution(apiName, request string) { |
| 176 | var logString strings.Builder |
| 177 | logString.WriteString(fmt.Sprintf("Calling %s with \n %s \n\n", apiName, request)) |
| 178 | executionOrder = append(executionOrder, logString.String()) |
| 179 | } |
| 180 | |
| 181 | // createContainerFuzz creates a CreateContainerRequest and passes |
| 182 | // it to c.CreateContainer |
no test coverage detected
searching dependent graphs…