diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 14:50:49 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 14:50:49 +0200 |
commit | e54ebc7e74f3ca94de3467a03397c0aad2aed079 (patch) | |
tree | 87275746537881f8d21be33ae842374fd3750d49 /src/test/audio.cpp | |
parent | c40332b990b025d2bd7b94e41184d7f0547da203 (diff) |
`make format` + clang-tidy
Diffstat (limited to 'src/test/audio.cpp')
-rw-r--r-- | src/test/audio.cpp | 23 |
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); } |