Files
simian/tests/test.cpp
T
nick 5f031b80c2
CI / build-and-test (push) Failing after 14m23s
chore: more tests
2026-03-10 21:20:30 +13:00

23 lines
914 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 },
{ "asset_registry_material", test_asset_registry_material },
{ "resource_bindings", test_resource_bindings_script },
{ "scenegraph_world", test_scenegraph_world_transform },
{ "scenegraph_detach", test_scenegraph_detach },
{ "scene_loader", test_scene_loader_basic },
{ "scene_loader_assets", test_scene_loader_asset_keys },
{ NULL, NULL }
};