|
@@ -1,6 +1,7 @@
|
|
|
#include "tests/StringBufferTests.h"
|
|
|
#include "tests/Test.h"
|
|
|
#include "utils/StringBuffer.h"
|
|
|
+#include "utils/HashMap.h"
|
|
|
|
|
|
typedef StringBuffer<20> String;
|
|
|
|
|
@@ -96,6 +97,27 @@ static void testAppendChar(Test& test) {
|
|
|
test.checkEqual(4, s.getLength(), "length after char append with overflow");
|
|
|
}
|
|
|
|
|
|
+static void testHashCode(Test& test) {
|
|
|
+ String s;
|
|
|
+ s.append("a").append("bc").append(20).append(25.5f).append(true);
|
|
|
+ test.checkEqual(String("abc2025.50true").hashCode(), s.hashCode(), "string modification recalculates hash 1");
|
|
|
+ s.clear();
|
|
|
+ test.checkEqual(String().hashCode(), s.hashCode(), "string modification recalculates hash 2");
|
|
|
+}
|
|
|
+
|
|
|
+static void testAsHashMapKey(Test& test) {
|
|
|
+ HashMap<String, int, 5> map;
|
|
|
+
|
|
|
+ map.add(String("wusi"), 3);
|
|
|
+ map.add(String("hiThere"), 7);
|
|
|
+ map.add(String("baum123"), 5);
|
|
|
+
|
|
|
+ test.checkEqual(3, map.search(String("wusi"), 0), "strings works as hash key 1");
|
|
|
+ test.checkEqual(7, map.search(String("hiThere"), 0), "strings works as hash key 2");
|
|
|
+ test.checkEqual(5, map.search(String("baum123"), 0), "strings works as hash key 3");
|
|
|
+ test.checkEqual(0, map.search(String("423hifd"), 0), "strings works as hash key 4");
|
|
|
+}
|
|
|
+
|
|
|
void StringBufferTests::test() {
|
|
|
Test test("StringBuffer");
|
|
|
testEquality(test);
|
|
@@ -111,5 +133,7 @@ void StringBufferTests::test() {
|
|
|
testBool(test);
|
|
|
testClear(test);
|
|
|
testAppendChar(test);
|
|
|
+ testHashCode(test);
|
|
|
+ testAsHashMapKey(test);
|
|
|
test.finalize();
|
|
|
}
|