aboutsummaryrefslogtreecommitdiffstats
path: root/tests/example.t.cpp
blob: 30341e8bb6fce01f5cc6661fe331f502b190e8bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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;
}