(t *testing.T)
| 969 | } |
| 970 | |
| 971 | func TestUint64FlagHelpOutput(t *testing.T) { |
| 972 | for _, test := range uint64FlagTests { |
| 973 | fl := Uint64Flag{Name: test.name, Value: 8589934582} |
| 974 | assert.Equal(t, test.expected, fl.String()) |
| 975 | } |
| 976 | } |
| 977 | |
| 978 | func TestUint64FlagWithEnvVarHelpOutput(t *testing.T) { |
| 979 | t.Setenv("APP_BAR", "2") |
nothing calls this directly
no test coverage detected
searching dependent graphs…