aboutsummaryrefslogtreecommitdiff
path: root/src/test/LoopManagerTest.cpp
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-13 08:17:16 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-13 08:17:16 +0100
commit2793e8be0e6c44bb34a25522e1e75ed8a2868b32 (patch)
tree7e94ba52ac68fc42072f41dc9f19b900b0b7a345 /src/test/LoopManagerTest.cpp
parent193d5bf4d9577e63202cec45b21ed85a76a89f09 (diff)
parentfd403d038b017ec8976023471073329896035e36 (diff)
Merge branch 'master' of https://github.com/lonkaars/crepe into wouter/inputSystem
Diffstat (limited to 'src/test/LoopManagerTest.cpp')
-rw-r--r--src/test/LoopManagerTest.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/test/LoopManagerTest.cpp b/src/test/LoopManagerTest.cpp
index af89d64..df132ae 100644
--- a/src/test/LoopManagerTest.cpp
+++ b/src/test/LoopManagerTest.cpp
@@ -10,7 +10,7 @@
using namespace std::chrono;
using namespace crepe;
-class LoopManagerTest : public ::testing::Test {
+class DISABLED_LoopManagerTest : public ::testing::Test {
protected:
class TestGameLoop : public crepe::LoopManager {
public:
@@ -22,7 +22,7 @@ protected:
void SetUp() override {}
};
-TEST_F(LoopManagerTest, FixedUpdate) {
+TEST_F(DISABLED_LoopManagerTest, FixedUpdate) {
// Arrange
test_loop.loop_timer.set_target_framerate(60);
@@ -43,7 +43,8 @@ TEST_F(LoopManagerTest, FixedUpdate) {
// Test finished
}
-TEST_F(LoopManagerTest, ScaledFixedUpdate) {
+
+TEST_F(DISABLED_LoopManagerTest, ScaledFixedUpdate) {
// Arrange
test_loop.loop_timer.set_target_framerate(60);
@@ -64,7 +65,8 @@ TEST_F(LoopManagerTest, ScaledFixedUpdate) {
// Test finished
}
-TEST_F(LoopManagerTest, ShutDown) {
+
+TEST_F(DISABLED_LoopManagerTest, ShutDown) {
// Arrange
test_loop.loop_timer.set_target_framerate(60);
// Start the loop in a separate thread