Implement OrderedHashMap

This commit is contained in:
Ruslan Mustakov
2017-08-13 15:32:39 +07:00
parent 3bea3256f5
commit 8d26748f80
6 changed files with 592 additions and 38 deletions
+6
View File
@@ -35,6 +35,7 @@
#include "test_containers.h"
#include "test_gui.h"
#include "test_math.h"
#include "test_ordered_hash_map.h"
#include "test_physics.h"
#include "test_physics_2d.h"
#include "test_render.h"
@@ -143,6 +144,11 @@ MainLoop *test_main(String p_test, const List<String> &p_args) {
return TestImage::test();
}
if (p_test == "ordered_hash_map") {
return TestOrderedHashMap::test();
}
return NULL;
}