()
| 47 | type StringSlice []string |
| 48 | |
| 49 | func (i *StringSlice) String() string { |
| 50 | return "asdf" |
| 51 | } |
| 52 | |
| 53 | func (i *StringSlice) Set(value string) error { |
| 54 | *i = append(*i, value) |
nothing calls this directly
no outgoing calls
no test coverage detected