Exemplo n.º 1
0
        private static FastMap <String, String> BuildTestFastMap()
        {
            FastMap <String, String> map = new FastMap <String, String>();

            map.Add("foo", "bar");
            map.Add("baz", "bang");
            map.Add("alpha", "beta");
            return(map);
        }
Exemplo n.º 2
0
        public void testGrow()
        {
            FastMap <String, String> map = new FastMap <String, String>(1, FastMap <string, string> .NO_MAX_SIZE);

            map.Add("foo", "bar");
            map.Add("baz", "bang");
            Assert.AreEqual("bar", map["foo"]);
            Assert.AreEqual("bang", map["baz"]);
        }
Exemplo n.º 3
0
        public void TestMaxSize()
        {
            FastMap <String, String> map = new FastMap <String, String>(1, 1);

            map.Add("foo", "bar");
            Assert.AreEqual(1, map.Count);
            map.Add("baz", "bang");
            Assert.AreEqual(1, map.Count);
            Assert.IsNull(map["foo"]);
            map.Add("baz", "buzz");
            Assert.AreEqual(1, map.Count);
            Assert.AreEqual("buzz", map["baz"]);
        }
Exemplo n.º 4
0
 public void TestPutAndGet()
 {
     FastMap<String, String> map = new FastMap<String, String>();
     Assert.IsNull(map["foo"]);
     
     map.Add("foo", "bar");
     Assert.AreEqual("bar", map["foo"]);
 }
Exemplo n.º 5
0
 public void TestClear()
 {
     FastMap<String, String> map = new FastMap<String, String>();
     map.Add("foo", "bar");
     map.Clear();
     Assert.AreEqual(0, map.Count);
     Assert.IsTrue(map.IsEmpty);
     Assert.IsNull(map["foo"]);
 }
Exemplo n.º 6
0
        public void TestPutAndGet()
        {
            FastMap <String, String> map = new FastMap <String, String>();

            Assert.IsNull(map["foo"]);

            map.Add("foo", "bar");
            Assert.AreEqual("bar", map["foo"]);
        }
Exemplo n.º 7
0
        public void TestClear()
        {
            FastMap <String, String> map = new FastMap <String, String>();

            map.Add("foo", "bar");
            map.Clear();
            Assert.AreEqual(0, map.Count);
            Assert.IsTrue(map.IsEmpty);
            Assert.IsNull(map["foo"]);
        }
Exemplo n.º 8
0
 public void TestSizeEmpty()
 {
     FastMap<String, String> map = new FastMap<String, String>();
     Assert.AreEqual(0, map.Count);
     Assert.IsTrue(map.IsEmpty);
     map.Add("foo", "bar");
     Assert.AreEqual(1, map.Count);
     Assert.IsFalse(map.IsEmpty);
     map.Remove("foo");
     Assert.AreEqual(0, map.Count);
     Assert.IsTrue(map.IsEmpty);
 }
Exemplo n.º 9
0
        public void TestSizeEmpty()
        {
            FastMap <String, String> map = new FastMap <String, String>();

            Assert.AreEqual(0, map.Count);
            Assert.IsTrue(map.IsEmpty);
            map.Add("foo", "bar");
            Assert.AreEqual(1, map.Count);
            Assert.IsFalse(map.IsEmpty);
            map.Remove("foo");
            Assert.AreEqual(0, map.Count);
            Assert.IsTrue(map.IsEmpty);
        }
Exemplo n.º 10
0
        public void TestNull()
        {
            FastMap <String, String> map = new FastMap <String, String>();

            try
            {
                map.Add(null, "bar");
                Assert.Fail("Should have thrown NullReferenceException");
            }
            catch (ArgumentNullException)
            {
            }

            try
            {
                map.Add("foo", null);
                Assert.Fail("Should have thrown ArgumentNullException");
            }
            catch (ArgumentNullException)
            {
                // good
            }
            Assert.IsNull(map[null]);
        }
Exemplo n.º 11
0
        public void TestNull() 
        {
            FastMap<String, String> map = new FastMap<String, String>();
            try
            {
                map.Add(null, "bar");
                Assert.Fail("Should have thrown NullReferenceException");
            }
            catch (ArgumentNullException)
            {
            }

            try
            {
                map.Add("foo", null);
                Assert.Fail("Should have thrown ArgumentNullException");
            }
            catch (ArgumentNullException)
            {
                // good
            }
            Assert.IsNull(map[null]);
        }
Exemplo n.º 12
0
 private static FastMap<String, String> BuildTestFastMap()
 {
     FastMap<String, String> map = new FastMap<String, String>();
     map.Add("foo", "bar");
     map.Add("baz", "bang");
     map.Add("alpha", "beta");
     return map;
 }
Exemplo n.º 13
0
 public void TestMaxSize()
 {
     FastMap<String, String> map = new FastMap<String, String>(1, 1);
     map.Add("foo", "bar");
     Assert.AreEqual(1, map.Count);
     map.Add("baz", "bang");
     Assert.AreEqual(1, map.Count);
     Assert.IsNull(map["foo"]);
     map.Add("baz", "buzz");
     Assert.AreEqual(1, map.Count);
     Assert.AreEqual("buzz", map["baz"]);
 }
Exemplo n.º 14
0
 public void testGrow()
 {
     FastMap<String, String> map = new FastMap<String, String>(1, FastMap<string,string>.NO_MAX_SIZE);
     map.Add("foo", "bar");
     map.Add("baz", "bang");
     Assert.AreEqual("bar", map["foo"]);
     Assert.AreEqual("bang", map["baz"]);
 }