(t *testing.T)
| 3451 | } |
| 3452 | |
| 3453 | func TestGenericFlag_SatisfiesFlagInterface(t *testing.T) { |
| 3454 | var f Flag = &GenericFlag{} |
| 3455 | |
| 3456 | _ = f.IsSet() |
| 3457 | _ = f.Names() |
| 3458 | } |
| 3459 | |
| 3460 | func TestGenericValue_SatisfiesBoolInterface(t *testing.T) { |
| 3461 | var f boolFlag = &genericValue{} |