Files
openal-soft/tests/example.t.cpp
hsdk123 2d86d8b84f Add gtest integration (#860)
* Add gtest integration

* Update gtest fetch

* Add ctest

* Update CI

* Update CI

* enable testing

* Make tests off by default

* Update gitignore
2023-06-12 03:31:03 +00:00

17 lines
244 B
C++

#include <gtest/gtest.h>
#include <AL/al.h>
class ExampleTest : public ::testing::Test {
};
TEST_F(ExampleTest, Basic)
{
// just making sure we compile
ALuint source, buffer;
ALfloat offset;
ALenum state;
}