mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 15:55:07 +00:00

Get rid of the ConstIterator classes for these containers and use templated FooIterator<T, ...> and FooIterator<const T, ...> helpers. This makes the HashTable class a lot easier to read.
28 lines
635 B
C++
28 lines
635 B
C++
#include "TestHelpers.h"
|
|
#include <AK/AKString.h>
|
|
#include <AK/HashMap.h>
|
|
|
|
typedef HashMap<int, int> IntIntMap;
|
|
|
|
int main()
|
|
{
|
|
EXPECT(IntIntMap().is_empty());
|
|
EXPECT(IntIntMap().size() == 0);
|
|
|
|
HashMap<int, String> number_to_string;
|
|
number_to_string.set(1, "One");
|
|
number_to_string.set(2, "Two");
|
|
number_to_string.set(3, "Three");
|
|
|
|
EXPECT_EQ(number_to_string.is_empty(), false);
|
|
EXPECT_EQ(number_to_string.size(), 3);
|
|
|
|
int loop_counter = 0;
|
|
for (auto& it : number_to_string) {
|
|
EXPECT(!it.value.is_null());
|
|
++loop_counter;
|
|
}
|
|
|
|
EXPECT_EQ(loop_counter, 3);
|
|
return 0;
|
|
}
|