(s string, d bool, c string)
| 312 | func (testFlags) AddExtraUsage(eu string) {} |
| 313 | |
| 314 | func (f testFlags) Bool(s string, d bool, c string) *bool { |
| 315 | if b, ok := f.bools[s]; ok { |
| 316 | return &b |
| 317 | } |
| 318 | return &d |
| 319 | } |
| 320 | |
| 321 | func (f testFlags) Int(s string, d int, c string) *int { |
| 322 | if i, ok := f.ints[s]; ok { |
nothing calls this directly
no outgoing calls
no test coverage detected