(t *testing.T)
| 836 | } |
| 837 | |
| 838 | func TestAliasesOfAliases(t *testing.T) { |
| 839 | v := New() |
| 840 | v.Set("Title", "Checking Case") |
| 841 | v.RegisterAlias("Foo", "Bar") |
| 842 | v.RegisterAlias("Bar", "Title") |
| 843 | assert.Equal(t, "Checking Case", v.Get("FOO")) |
| 844 | } |
| 845 | |
| 846 | func TestRecursiveAliases(t *testing.T) { |
| 847 | v := New() |
nothing calls this directly
no test coverage detected