You've already forked openal-soft
mirror of
https://github.com/OldUnreal/openal-soft.git
synced 2026-04-02 21:38:01 -07:00
* Add gtest integration * Update gtest fetch * Add ctest * Update CI * Update CI * enable testing * Make tests off by default * Update gitignore
17 lines
244 B
C++
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;
|
|
}
|
|
|
|
|