(value string)
| 33 | } |
| 34 | |
| 35 | func formatVariableValue(value string) string { |
| 36 | if value == "" { |
| 37 | return "[not found]" |
| 38 | } |
| 39 | return value |
| 40 | } |
| 41 | |
| 42 | func savedVariablesForHTTPResult(result api.HTTPRequestResult) []variableEntry { |
| 43 | var entries []variableEntry |
no outgoing calls
no test coverage detected