(s2ip *map[string]int)
| 18 | } |
| 19 | |
| 20 | func setUpS2IFlagSetWithDefault(s2ip *map[string]int) *FlagSet { |
| 21 | f := NewFlagSet("test", ContinueOnError) |
| 22 | f.StringToIntVar(s2ip, "s2i", map[string]int{"a": 1, "b": 2}, "Command separated ls2it!") |
| 23 | return f |
| 24 | } |
| 25 | |
| 26 | func createS2IFlag(vals map[string]int) string { |
| 27 | var buf bytes.Buffer |
no test coverage detected