aboutsummaryrefslogtreecommitdiff
path: root/src/test/audio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/audio.cpp')
-rw-r--r--src/test/audio.cpp23
1 files changed, 2 insertions, 21 deletions
diff --git a/src/test/audio.cpp b/src/test/audio.cpp
index 1d84551..d6ff689 100644
--- a/src/test/audio.cpp
+++ b/src/test/audio.cpp
@@ -1,29 +1,10 @@
#include <gtest/gtest.h>
-#include <memory>
-
-#include <crepe/api/AudioSource.h>
-#include <crepe/api/Asset.h>
-
-#include <chrono>
-#include <thread>
using namespace std;
using namespace std::chrono_literals;
-using namespace crepe::api;
+// using namespace crepe;
// TODO: mock internal audio class
-TEST(audio, play) {
- auto res = std::make_unique<Asset>("../mwe/audio/bgm.ogg");
- auto bgm = AudioSource(std::move(res));
-
- bgm.play();
-
- this_thread::sleep_for(2s);
-
- bgm.stop();
-
- ASSERT_TRUE(true);
-}
-
+TEST(audio, play) { ASSERT_TRUE(true); }