(t *testing.T)
| 3501 | } |
| 3502 | |
| 3503 | func TestGenericValue(t *testing.T) { |
| 3504 | g := &genericValue{} |
| 3505 | assert.NoError(t, g.Set("something")) |
| 3506 | assert.Nil(t, g.Get()) |
| 3507 | assert.Empty(t, g.String()) |
| 3508 | } |
| 3509 | |
| 3510 | func TestEndValue(t *testing.T) { |
| 3511 | cmd := buildMinimalTestCommand() |