mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 12:44:46 +00:00
17 lines
228 B
C++
17 lines
228 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;
|
|
}
|
|
|
|
|