(t *testing.T)
| 514 | } |
| 515 | |
| 516 | func TestDefaultPost(t *testing.T) { |
| 517 | v := New() |
| 518 | assert.NotEqual(t, "NYC", v.Get("state")) |
| 519 | v.SetDefault("state", "NYC") |
| 520 | assert.Equal(t, "NYC", v.Get("state")) |
| 521 | } |
| 522 | |
| 523 | func TestAliases(t *testing.T) { |
| 524 | v := New() |
nothing calls this directly
no test coverage detected