diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-25 17:36:31 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-25 17:36:31 +0200 |
commit | f3eeedc91a04ca0651e0fe78a2119e7e3e38e391 (patch) | |
tree | fc2265ccc90abcefbdf2eb7670eb2c30c56da300 /test/audio.cpp | |
parent | f4560e02f703f1c6f857c8e5af63fa9fc4ca6438 (diff) |
WIP Audio API + facade
Diffstat (limited to 'test/audio.cpp')
-rw-r--r-- | test/audio.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/audio.cpp b/test/audio.cpp new file mode 100644 index 0000000..a415919 --- /dev/null +++ b/test/audio.cpp @@ -0,0 +1,29 @@ +#include <gtest/gtest.h> +#include <memory> + +#include <crepe/api/Resource.h> +#include <crepe/api/AudioSource.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); +} + |