private static FastMap <String, String> buildTestFastMap() { FastMap <String, String> map = new FastMap <String, String>(); map.put("foo", "bar"); map.put("baz", "bang"); map.put("alpha", "beta"); return(map); }
public void testGrow() { IDictionary <String, String> map = new FastMap <String, String>(1, FastMap.NO_MAX_SIZE); map.put("foo", "bar"); map.put("baz", "bang"); Assert.AreEqual("bar", map.get("foo")); Assert.AreEqual("bang", map.get("baz")); }
public void testMaxSize() { IDictionary <String, String> map = new FastMap <String, String>(1, 1); map.put("foo", "bar"); Assert.AreEqual(1, map.Count); map.put("baz", "bang"); Assert.AreEqual(1, map.Count); Assert.IsNull(map.get("foo")); map.put("baz", "buzz"); Assert.AreEqual(1, map.Count); Assert.AreEqual("buzz", map.get("baz")); }
public void testVersusHashMap() { IDictionary <Integer, String> actual = new FastMap <Integer, String>(1, 1000000); IDictionary <Integer, String> expected = Maps.newHashMapWithExpectedSize(1000000); Random r = RandomUtils.getRandom(); for (int i = 0; i < 1000000; i++) { double d = r.nextDouble(); Integer key = r.nextInt(100); if (d < 0.4) { Assert.AreEqual(expected.get(key), actual.get(key)); } else { if (d < 0.7) { Assert.AreEqual(expected.put(key, "foo"), actual.put(key, "foo")); } else { Assert.AreEqual(expected.remove(key), actual.remove(key)); } Assert.AreEqual(expected.Count, actual.Count); Assert.AreEqual(expected.isEmpty(), actual.isEmpty()); } } }
public void testNull1() { IDictionary <String, String> map = new FastMap <String, String>(); Assert.IsNull(map.get(null)); map.put(null, "bar"); }
public void testPutAndGet() { IDictionary <string, string> map = new FastMap <String, String>(); Assert.IsNull(map.get("foo")); map.put("foo", "bar"); Assert.AreEqual("bar", map.get("foo")); }
public void testClear() { IDictionary<String, String> map = new FastMap<String, String>(); map.put("foo", "bar"); map.clear(); Assert.AreEqual(0, map.Count); Assert.True(map.isEmpty()); Assert.IsNull(map.get("foo")); }
public void testClear() { IDictionary <String, String> map = new FastMap <String, String>(); map.put("foo", "bar"); map.clear(); Assert.AreEqual(0, map.Count); Assert.True(map.isEmpty()); Assert.IsNull(map.get("foo")); }
public void testSizeEmpty() { IDictionary<String, String> map = new FastMap<String, String>(); Assert.AreEqual(0, map.Count); Assert.True(map.isEmpty()); map.put("foo", "bar"); Assert.AreEqual(1, map.Count); Assert.False(map.isEmpty()); map.remove("foo"); Assert.AreEqual(0, map.Count); Assert.True(map.isEmpty()); }
public void testSizeEmpty() { IDictionary <String, String> map = new FastMap <String, String>(); Assert.AreEqual(0, map.Count); Assert.True(map.isEmpty()); map.put("foo", "bar"); Assert.AreEqual(1, map.Count); Assert.False(map.isEmpty()); map.remove("foo"); Assert.AreEqual(0, map.Count); Assert.True(map.isEmpty()); }
public void testVersusHashMap() { IDictionary<Integer, String> actual = new FastMap<Integer, String>(1, 1000000); IDictionary<Integer, String> expected = Maps.newHashMapWithExpectedSize(1000000); Random r = RandomUtils.getRandom(); for (int i = 0; i < 1000000; i++) { double d = r.nextDouble(); Integer key = r.nextInt(100); if (d < 0.4) { Assert.AreEqual(expected.get(key), actual.get(key)); } else { if (d < 0.7) { Assert.AreEqual(expected.put(key, "foo"), actual.put(key, "foo")); } else { Assert.AreEqual(expected.remove(key), actual.remove(key)); } Assert.AreEqual(expected.Count, actual.Count); Assert.AreEqual(expected.isEmpty(), actual.isEmpty()); } } }
public void testNull2() { IDictionary<String, String> map = new FastMap<String, String>(); map.put("foo", null); }
public void testNull1() { IDictionary<String, String> map = new FastMap<String, String>(); Assert.IsNull(map.get(null)); map.put(null, "bar"); }
public void testPutAndGet() { IDictionary<string, string> map = new FastMap<String, String>(); Assert.IsNull(map.get("foo")); map.put("foo", "bar"); Assert.AreEqual("bar", map.get("foo")); }
private static FastMap<String, String> buildTestFastMap() { FastMap<String, String> map = new FastMap<String, String>(); map.put("foo", "bar"); map.put("baz", "bang"); map.put("alpha", "beta"); return map; }
public void testMaxSize() { IDictionary<String, String> map = new FastMap<String, String>(1, 1); map.put("foo", "bar"); Assert.AreEqual(1, map.Count); map.put("baz", "bang"); Assert.AreEqual(1, map.Count); Assert.IsNull(map.get("foo")); map.put("baz", "buzz"); Assert.AreEqual(1, map.Count); Assert.AreEqual("buzz", map.get("baz")); }
public void testNull2() { IDictionary <String, String> map = new FastMap <String, String>(); map.put("foo", null); }
public void testGrow() { IDictionary<String, String> map = new FastMap<String, String>(1, FastMap.NO_MAX_SIZE); map.put("foo", "bar"); map.put("baz", "bang"); Assert.AreEqual("bar", map.get("foo")); Assert.AreEqual("bang", map.get("baz")); }