(s, d, c string)
| 333 | } |
| 334 | |
| 335 | func (f testFlags) String(s, d, c string) *string { |
| 336 | if t, ok := f.strings[s]; ok { |
| 337 | return &t |
| 338 | } |
| 339 | return &d |
| 340 | } |
| 341 | |
| 342 | func (f testFlags) StringList(s, d, c string) *[]*string { |
| 343 | if t, ok := f.stringLists[s]; ok { |
nothing calls this directly
no outgoing calls
no test coverage detected