Files
simian/tests/test.cpp
T
nick e6a53baa1a
CI / build-and-test (push) Failing after 1m57s
Sync Docs to Gitea Wiki / Sync docs to Gitea wiki (push) Failing after 13s
chore: added tests and tidied docs
2026-03-08 15:52:14 +13:00

21 lines
788 B
C++

#include "acutest.h"
#include "hot_reload.h"
#include "script_engine_tests.h"
#include "math_bindings_tests.h"
#include "resource_tests.h"
#include "scenegraph_tests.h"
TEST_LIST = {
{ "hotreload_dir", test_hotreload_directory_watch },
{ "script_compile", test_scriptengine_compile_and_call },
{ "script_include", test_scriptengine_include },
{ "math_bindings", test_math_bindings },
{ "shader_manager", test_shader_manager },
{ "model_manager", test_model_manager },
{ "material_manager", test_material_manager },
{ "resource_bindings", test_resource_bindings_script },
{ "scenegraph_world", test_scenegraph_world_transform },
{ "scenegraph_detach", test_scenegraph_detach },
{ "scene_loader", test_scene_loader_basic },
{ NULL, NULL }
};