(s string, length int)
| 327 | } |
| 328 | |
| 329 | func truncateString(s string, length int) string { |
| 330 | if len(s) <= length { |
| 331 | return s |
| 332 | } |
| 333 | |
| 334 | return s[:length] |
| 335 | } |
| 336 | |
| 337 | func printSuccessText(message string, indent bool) { |
| 338 | if isAutoDiscover || isSilent { |
no outgoing calls
no test coverage detected