(name []string, f *testFlags, components []string)
| 289 | } |
| 290 | |
| 291 | func addString(name []string, f *testFlags, components []string) []string { |
| 292 | for _, c := range components { |
| 293 | if f.bools[c] || f.strings[c] != "" || f.ints[c] != 0 { |
| 294 | return append(name, c) |
| 295 | } |
| 296 | } |
| 297 | return name |
| 298 | } |
| 299 | |
| 300 | // testFlags implements the plugin.FlagSet interface. |
| 301 | type testFlags struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…