testFlags implements the plugin.FlagSet interface.
| 299 | |
| 300 | // testFlags implements the plugin.FlagSet interface. |
| 301 | type testFlags struct { |
| 302 | bools map[string]bool |
| 303 | ints map[string]int |
| 304 | floats map[string]float64 |
| 305 | strings map[string]string |
| 306 | args []string |
| 307 | stringLists map[string][]string |
| 308 | } |
| 309 | |
| 310 | func (testFlags) ExtraUsage() string { return "" } |
| 311 |
nothing calls this directly
no outgoing calls
no test coverage detected