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