]> git.localhorst.tv Git - blank.git/blob - tst/graphics/GLTraitsTest.hpp
"streamlined" model/VAO handling
[blank.git] / tst / graphics / GLTraitsTest.hpp
1 #ifndef BLANK_TEST_GRAPHICS_GLTRAITSTEST_HPP_
2 #define BLANK_TEST_GRAPHICS_GLTRAITSTEST_HPP_
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6 namespace blank {
7 namespace test {
8
9 class GLTraitsTest
10 : public CppUnit::TestFixture {
11
12 CPPUNIT_TEST_SUITE(GLTraitsTest);
13
14 CPPUNIT_TEST(testSize);
15 CPPUNIT_TEST(testType);
16
17 CPPUNIT_TEST_SUITE_END();
18
19 public:
20         void setUp();
21         void tearDown();
22
23         void testSize();
24         void testType();
25
26 };
27
28 }
29 }
30
31 #endif