repo.or.cz
/
openal-soft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 1.24.0
[openal-soft.git]
/
tests
/
example.t.cpp
blob
30341e8bb6fce01f5cc6661fe331f502b190e8bf
1
#include <gtest/gtest.h>
2
#include <AL/al.h>
3
4
class
ExampleTest
:
public
::
testing
::
Test
{
5
};
6
7
8
TEST_F
(
ExampleTest
,
Basic
)
9
{
10
// just making sure we compile
11
ALuint source
,
buffer
;
12
ALfloat offset
;
13
ALenum state
;
14
}
15
16