| 9 | |
| 10 | |
| 11 | TEST(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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected