MCPcopy Create free account
hub / github.com/cginternals/glbinding / TEST

Function TEST

source/tests/glbinding-test/Boolean_compilation_test.cpp:11–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9
10
11TEST(Boolean, Compilation)
12{
13 const gl45core::GLboolean b1 = gl45core::GL_TRUE;
14 const gl::GLboolean b2 = gl::GL_TRUE;
15 const GLboolean b3 = GL_TRUE;
16
17 (void)b1;
18 (void)b2;
19 (void)b3;
20
21 SUCCEED(); // compiling this file without errors and warnings results in successful test
22}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected