]> git.localhorst.tv Git - blobs.git/blob - tst/graphics/ColorTest.hpp
color conversion tests
[blobs.git] / tst / graphics / ColorTest.hpp
1 #ifndef BLOBS_TEST_GRAPHICS_COLORTEST_HPP
2 #define BLOBS_TEST_GRAPHICS_COLORTEST_HPP
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6
7
8 namespace blobs {
9 namespace graphics {
10 namespace test {
11
12 class ColorTest
13 : public CppUnit::TestFixture {
14
15 CPPUNIT_TEST_SUITE(ColorTest);
16
17 CPPUNIT_TEST(testConversion);
18
19 CPPUNIT_TEST_SUITE_END();
20
21 public:
22         void setUp();
23         void tearDown();
24
25         void testConversion();
26
27 };
28
29 }
30 }
31 }
32
33 #endif