(results map[string]PluginRunResult)
| 385 | } |
| 386 | |
| 387 | func sortedRunPluginNames(results map[string]PluginRunResult) []string { |
| 388 | names := make([]string, 0, len(results)) |
| 389 | for name := range results { |
| 390 | names = append(names, name) |
| 391 | } |
| 392 | sort.Strings(names) |
| 393 | return names |
| 394 | } |
| 395 | |
| 396 | func runPluginNames(run BenchmarkRun) []string { |
| 397 | if len(run.PluginOrder) == 0 { |
no outgoing calls
no test coverage detected