aboutsummaryrefslogtreecommitdiff
path: root/test/audio.cpp
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-10-22 11:35:47 +0200
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-10-22 11:35:47 +0200
commit176ac90fce318334f1377d94d6e637e1eff84c3c (patch)
tree104b86fc3537fd82c7b9dd731ee716c51441ca31 /test/audio.cpp
parentedfcb27fe37fdcf08622863f331960325e3899ac (diff)
parent77555730e3ddb811b9ce8470659663e3f1573de2 (diff)
Merge branch 'master' into niels/rendering
Diffstat (limited to 'test/audio.cpp')
-rw-r--r--test/audio.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/test/audio.cpp b/test/audio.cpp
deleted file mode 100644
index 47c5e84..0000000
--- a/test/audio.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#include <gtest/gtest.h>
-#include <memory>
-
-#include <crepe/api/AudioSource.h>
-#include <crepe/api/Resource.h>
-
-#include <chrono>
-#include <thread>
-
-using namespace std;
-using namespace std::chrono_literals;
-
-using namespace crepe::api;
-
-// TODO: mock internal audio class
-
-TEST(audio, play) {
- auto res = std::make_unique<Resource>("../mwe/audio/bgm.ogg");
- auto bgm = AudioSource(std::move(res));
-
- bgm.play();
-
- this_thread::sleep_for(2s);
-
- bgm.stop();
-
- ASSERT_TRUE(true);
-}