(s string)
| 126 | } |
| 127 | |
| 128 | func isURL(s string) bool { |
| 129 | return strings.HasPrefix(s, "http://") || strings.HasPrefix(s, "https://") |
| 130 | } |
| 131 | |
| 132 | func convergeResults(result runtime.Result, new runtime.Result) runtime.Result { |
| 133 | result.TestResults = append(result.TestResults, new.TestResults...) |