Example #1
0
        public void GetMissing()
        {
            int key = 0;
            KevinDictionary <int, string> kd = new KevinDictionary <int, string>(100);

            kd.Get(key);
        }
Example #2
0
        public void GetExisting()
        {
            int    key   = 99;
            string value = "3231";
            KevinDictionary <int, string> kd = new KevinDictionary <int, string>(100);

            kd.Put(key, value);
            Assert.AreEqual(kd.Get(key), value);
        }