diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-18 16:34:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-18 16:34:36 +0200 |
commit | 56343e13b0d49596f8c2556a608b0b9dfdc4f81c (patch) | |
tree | 8f985a54f41b2859e5c015818d1808066de33407 /main/tests/test_main.cpp | |
parent | 8896425ee47992b3cbc73e8079ad247e87b5b62e (diff) | |
parent | 9fa4b402a7956ff38d4db7c2af1d4055cd8fe487 (diff) |
Merge pull request #38723 from neikeq/initial-classdb-test
Added tests for ClassDB
Diffstat (limited to 'main/tests/test_main.cpp')
-rw-r--r-- | main/tests/test_main.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/main/tests/test_main.cpp b/main/tests/test_main.cpp index eb60372e6c..0bb8367240 100644 --- a/main/tests/test_main.cpp +++ b/main/tests/test_main.cpp @@ -35,6 +35,7 @@ #ifdef DEBUG_ENABLED #include "test_astar.h" +#include "test_class_db.h" #include "test_gdscript.h" #include "test_gui.h" #include "test_math.h" @@ -54,6 +55,7 @@ const char **tests_get_names() { "physics_3d", "render", "oa_hash_map", + "class_db", "gui", "shaderlang", "gd_tokenizer", @@ -93,6 +95,10 @@ MainLoop *test_main(String p_test, const List<String> &p_args) { return TestOAHashMap::test(); } + if (p_test == "class_db") { + return TestClassDB::test(); + } + #ifndef _3D_DISABLED if (p_test == "gui") { return TestGUI::test(); |