lel-guecs/tests/sound.cpp
2026-06-17 01:55:09 -04:00

23 lines
376 B
C++

#include <fmt/core.h>
#include <string>
#include "guecs/sfml/sound.hpp"
#include <fuc2/testing.hpp>
using namespace fuc2;
namespace sound_tests {
void test_sound_manager() {
sound::init();
sound::play("blank");
sound::play_at("blank", 0.1, 0.1, 0.1);
}
fuc2::Set TESTS{
.name="sound",
.tests={
TEST(test_sound_manager),
}
};
}