(s string, d float64, c string)
| 326 | } |
| 327 | |
| 328 | func (f testFlags) Float64(s string, d float64, c string) *float64 { |
| 329 | if g, ok := f.floats[s]; ok { |
| 330 | return &g |
| 331 | } |
| 332 | return &d |
| 333 | } |
| 334 | |
| 335 | func (f testFlags) String(s, d, c string) *string { |
| 336 | if t, ok := f.strings[s]; ok { |
nothing calls this directly
no outgoing calls
no test coverage detected