mirror of
https://github.com/love2d/megasource.git
synced 2026-08-13 09:01:02 +02:00
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;
|
|
}
|
|
|
|
|