(tools []coretools.Tool)
| 1072 | } |
| 1073 | |
| 1074 | func toolNames(tools []coretools.Tool) []string { |
| 1075 | names := make([]string, 0, len(tools)) |
| 1076 | for _, tool := range tools { |
| 1077 | names = append(names, tool.Name()) |
| 1078 | } |
| 1079 | return names |
| 1080 | } |
| 1081 | |
| 1082 | func mustResolvePath(t *testing.T, path string) string { |
| 1083 | t.Helper() |
no test coverage detected