1 2 3 4 5 6 7 8 9 10 11 12 13 14
// tests/loader/main.rs // // ローダー関連の統合テストをグルーピングするエントリーポイント。 // common ヘルパーは #[path] で tests/common/ を参照する。 #[path = "../common/mod.rs"] mod common; mod cache_test; mod config_actors_initialization_test; mod config_test; mod lifecycle_test; mod lua_passthrough_test; mod startup_test;