Esempio n. 1
0
        public void GetTwoValueTest()
        {
            DoubleKeyDictionary <int, string, string> map = CreateDictionary();

            map.GetTwoValue("a").AreEqualWith("Z");
            map.GetTwoValue("b").AreEqualWith("X");
        }
Esempio n. 2
0
        public void SetTwoValueTest()
        {
            DoubleKeyDictionary <int, string, string> map = CreateDictionary();

            map.SetTwoValue("a", "O");
            map.GetTwoValue("a").AreEqualWith("O");
            map.GetOneValue(1).AreEqualWith("O");
        }