diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-13 18:04:49 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-13 18:04:49 +0100 |
commit | 83131edf875c5997eb6a9f3441b5d42b22498bd8 (patch) | |
tree | 3d4126dd91d4f09fbfb92b9345c242e5330ede34 /src/test/ScriptTest.cpp | |
parent | 3a23e41255af0de3c5c7f5d9df981c8b205e291f (diff) |
update tests
Diffstat (limited to 'src/test/ScriptTest.cpp')
-rw-r--r-- | src/test/ScriptTest.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/ScriptTest.cpp b/src/test/ScriptTest.cpp index acdae70..2aee0fd 100644 --- a/src/test/ScriptTest.cpp +++ b/src/test/ScriptTest.cpp @@ -73,3 +73,16 @@ TEST_F(ScriptTest, UpdateInactive) { system.update(); } } + +TEST_F(ScriptTest, SaveManager) { + MyScript & script = this->script; + + EXPECT_EQ(&script.get_save_manager(), &this->save_manager); +} + +TEST_F(ScriptTest, LoopTimerManager) { + MyScript & script = this->script; + + EXPECT_EQ(&script.get_loop_timer(), &this->loop_timer); +} + |