|
@@ -73,13 +73,13 @@ std::ostream& operator<<(std::ostream& os, const A& a) {
|
|
|
|
|
|
static void testEmplace(Test& test) {
|
|
static void testEmplace(Test& test) {
|
|
HashMap<int, A, 5> map;
|
|
HashMap<int, A, 5> map;
|
|
-
|
|
|
|
|
|
+
|
|
bool r1 = map.tryEmplace(0, 3, 4);
|
|
bool r1 = map.tryEmplace(0, 3, 4);
|
|
bool r2 = map.tryEmplace(3, 4, 5);
|
|
bool r2 = map.tryEmplace(3, 4, 5);
|
|
bool r3 = map.tryEmplace(20, 5, 6);
|
|
bool r3 = map.tryEmplace(20, 5, 6);
|
|
bool r4 = map.tryEmplace(3, 6, 7);
|
|
bool r4 = map.tryEmplace(3, 6, 7);
|
|
bool r5 = map.tryEmplace(20, 7, 8);
|
|
bool r5 = map.tryEmplace(20, 7, 8);
|
|
-
|
|
|
|
|
|
+
|
|
test.checkEqual(A(3, 4), map.search(0, A(0, 0)), "contains emplaced value 1");
|
|
test.checkEqual(A(3, 4), map.search(0, A(0, 0)), "contains emplaced value 1");
|
|
test.checkEqual(A(4, 5), map.search(3, A(0, 0)), "contains emplaced value 2");
|
|
test.checkEqual(A(4, 5), map.search(3, A(0, 0)), "contains emplaced value 2");
|
|
test.checkEqual(A(5, 6), map.search(20, A(0, 0)), "contains emplaced value 3");
|
|
test.checkEqual(A(5, 6), map.search(20, A(0, 0)), "contains emplaced value 3");
|
|
@@ -108,6 +108,50 @@ static void testToString3(Test& test) {
|
|
test.checkEqual(String("[]"), String(map), "to string 3");
|
|
test.checkEqual(String("[]"), String(map), "to string 3");
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static void testCopy(Test& test) {
|
|
|
|
+ IntMap map;
|
|
|
|
+ map.add(1, 3).add(2, 4).add(3, 5);
|
|
|
|
+ IntMap copy(map);
|
|
|
|
+ test.checkEqual(map.search(1, 0), copy.search(1, -1), "copy has same values 1");
|
|
|
|
+ test.checkEqual(map.search(2, 0), copy.search(2, -1), "copy has same values 2");
|
|
|
|
+ test.checkEqual(map.search(3, 0), copy.search(3, -1), "copy has same values 3");
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void testCopyAssignment(Test& test) {
|
|
|
|
+ IntMap map;
|
|
|
|
+ map.add(1, 3).add(2, 4).add(3, 5);
|
|
|
|
+ IntMap copy;
|
|
|
|
+ copy = map;
|
|
|
|
+ test.checkEqual(map.search(1, 0), copy.search(1, -1), "copy assignment has same values 1");
|
|
|
|
+ test.checkEqual(map.search(2, 0), copy.search(2, -1), "copy assignment has same values 2");
|
|
|
|
+ test.checkEqual(map.search(3, 0), copy.search(3, -1), "copy assignment has same values 3");
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void testMove(Test& test) {
|
|
|
|
+ IntMap map;
|
|
|
|
+ map.add(1, 3).add(2, 4).add(3, 5);
|
|
|
|
+ IntMap move(std::move(map));
|
|
|
|
+ test.checkEqual(3, move.search(1, -1), "move moves values 1");
|
|
|
|
+ test.checkEqual(4, move.search(2, -1), "move moves values 2");
|
|
|
|
+ test.checkEqual(5, move.search(3, -1), "move moves values 3");
|
|
|
|
+ test.checkEqual(-1, map.search(1, -1), "move removes values 1");
|
|
|
|
+ test.checkEqual(-1, map.search(2, -1), "move removes values 2");
|
|
|
|
+ test.checkEqual(-1, map.search(3, -1), "move removes values 3");
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void testMoveAssignment(Test& test) {
|
|
|
|
+ IntMap map;
|
|
|
|
+ map.add(1, 3).add(2, 4).add(3, 5);
|
|
|
|
+ IntMap move;
|
|
|
|
+ move = std::move(map);
|
|
|
|
+ test.checkEqual(3, move.search(1, -1), "move assignment moves values 1");
|
|
|
|
+ test.checkEqual(4, move.search(2, -1), "move assignment moves values 2");
|
|
|
|
+ test.checkEqual(5, move.search(3, -1), "move assignment moves values 3");
|
|
|
|
+ test.checkEqual(-1, map.search(1, -1), "move assignment removes values 1");
|
|
|
|
+ test.checkEqual(-1, map.search(2, -1), "move assignment removes values 2");
|
|
|
|
+ test.checkEqual(-1, map.search(3, -1), "move assignment removes values 3");
|
|
|
|
+}
|
|
|
|
+
|
|
void HashMapTests::test() {
|
|
void HashMapTests::test() {
|
|
Test test("HashMap");
|
|
Test test("HashMap");
|
|
testAdd(test);
|
|
testAdd(test);
|
|
@@ -120,5 +164,9 @@ void HashMapTests::test() {
|
|
testToString1(test);
|
|
testToString1(test);
|
|
testToString2(test);
|
|
testToString2(test);
|
|
testToString3(test);
|
|
testToString3(test);
|
|
|
|
+ testCopy(test);
|
|
|
|
+ testCopyAssignment(test);
|
|
|
|
+ testMove(test);
|
|
|
|
+ testMoveAssignment(test);
|
|
test.finalize();
|
|
test.finalize();
|
|
}
|
|
}
|