aboutsummaryrefslogtreecommitdiff
path: root/src/test/ScriptTest.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-19 13:50:44 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-19 13:50:44 +0100
commit794efc4ef7a44b190a4d9ecc2dd84a66c62ab005 (patch)
tree5c0c93f0e1e21431837ac0ab49950703d20209be /src/test/ScriptTest.h
parentaaca31b3495060b46f178d476636563279fc1c23 (diff)
parentea85bf5d329c2f3571046329a2d22f9db7847544 (diff)
Merge branch 'master' into niels/rendering_fixes
Diffstat (limited to 'src/test/ScriptTest.h')
-rw-r--r--src/test/ScriptTest.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/test/ScriptTest.h b/src/test/ScriptTest.h
index 31fa7c9..f3dbda4 100644
--- a/src/test/ScriptTest.h
+++ b/src/test/ScriptTest.h
@@ -7,7 +7,10 @@
#include <crepe/api/Script.h>
#include <crepe/manager/ComponentManager.h>
#include <crepe/manager/EventManager.h>
+#include <crepe/manager/LoopTimerManager.h>
+#include <crepe/manager/SaveManager.h>
#include <crepe/system/ScriptSystem.h>
+
class ScriptTest : public testing::Test {
protected:
crepe::Mediator mediator;
@@ -17,6 +20,8 @@ public:
crepe::ComponentManager component_manager{mediator};
crepe::ScriptSystem system{mediator};
crepe::EventManager event_mgr{mediator};
+ crepe::LoopTimerManager loop_timer{mediator};
+ crepe::SaveManager save_manager{mediator};
crepe::GameObject entity = component_manager.new_object(OBJ_NAME);
class MyScript : public crepe::Script {
@@ -24,7 +29,7 @@ public:
public:
MOCK_METHOD(void, init, (), (override));
- MOCK_METHOD(void, update, (), (override));
+ MOCK_METHOD(void, update, (crepe::duration_t), (override));
};
crepe::OptionalRef<crepe::BehaviorScript> behaviorscript;