(s string)
| 2031 | } |
| 2032 | |
| 2033 | func firstLine(s string) string { |
| 2034 | lines := strings.Split(strings.TrimSpace(s), "\n") |
| 2035 | if len(lines) == 0 { |
| 2036 | return "" |
| 2037 | } |
| 2038 | return lines[0] |
| 2039 | } |
| 2040 | |
| 2041 | func extractDryRunPlan(output string) string { |
| 2042 | lines := strings.Split(strings.TrimSpace(output), "\n") |
no outgoing calls
no test coverage detected