forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImmutableHashMapTest.java
More file actions
55 lines (41 loc) · 1.61 KB
/
ImmutableHashMapTest.java
File metadata and controls
55 lines (41 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.thealgorithms.datastructures.hashmap.hashing;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
class ImmutableHashMapTest {
@Test
void testEmptyMap() {
ImmutableHashMap<String, Integer> map = ImmutableHashMap.<String, Integer>empty();
assertEquals(0, map.size());
assertNull(map.get("A"));
}
@Test
void testPutDoesNotModifyOriginalMap() {
ImmutableHashMap<String, Integer> map1 = ImmutableHashMap.<String, Integer>empty();
ImmutableHashMap<String, Integer> map2 = map1.put("A", 1);
assertEquals(0, map1.size());
assertEquals(1, map2.size());
assertNull(map1.get("A"));
assertEquals(1, map2.get("A"));
}
@Test
void testMultiplePuts() {
ImmutableHashMap<String, Integer> map = ImmutableHashMap.<String, Integer>empty().put("A", 1).put("B", 2);
assertEquals(2, map.size());
assertEquals(1, map.get("A"));
assertEquals(2, map.get("B"));
}
@Test
void testContainsKey() {
ImmutableHashMap<String, Integer> map = ImmutableHashMap.<String, Integer>empty().put("X", 100);
assertTrue(map.containsKey("X"));
assertFalse(map.containsKey("Y"));
}
@Test
void testNullKey() {
ImmutableHashMap<String, Integer> map = ImmutableHashMap.<String, Integer>empty().put(null, 50);
assertEquals(50, map.get(null));
}
}