X-Git-Url: http://git.localhorst.tv/?p=blobs.git;a=blobdiff_plain;f=tst%2Fgraphics%2FColorTest.hpp;fp=tst%2Fgraphics%2FColorTest.hpp;h=5c4e8bff5635667695e5ca74e0e6e898d809c0cd;hp=0000000000000000000000000000000000000000;hb=01cc65097f27ad657130fb58a10813e8d5c09fe7;hpb=99bac662c454fcf3680fa9c080c90e24319d8d3d diff --git a/tst/graphics/ColorTest.hpp b/tst/graphics/ColorTest.hpp new file mode 100644 index 0000000..5c4e8bf --- /dev/null +++ b/tst/graphics/ColorTest.hpp @@ -0,0 +1,33 @@ +#ifndef BLOBS_TEST_GRAPHICS_COLORTEST_HPP +#define BLOBS_TEST_GRAPHICS_COLORTEST_HPP + +#include + + + +namespace blobs { +namespace graphics { +namespace test { + +class ColorTest +: public CppUnit::TestFixture { + +CPPUNIT_TEST_SUITE(ColorTest); + +CPPUNIT_TEST(testConversion); + +CPPUNIT_TEST_SUITE_END(); + +public: + void setUp(); + void tearDown(); + + void testConversion(); + +}; + +} +} +} + +#endif