]> git.localhorst.tv Git - blobs.git/blobdiff - tst/graphics/ColorTest.hpp
color conversion tests
[blobs.git] / tst / graphics / ColorTest.hpp
diff --git a/tst/graphics/ColorTest.hpp b/tst/graphics/ColorTest.hpp
new file mode 100644 (file)
index 0000000..5c4e8bf
--- /dev/null
@@ -0,0 +1,33 @@
+#ifndef BLOBS_TEST_GRAPHICS_COLORTEST_HPP
+#define BLOBS_TEST_GRAPHICS_COLORTEST_HPP
+
+#include <cppunit/extensions/HelperMacros.h>
+
+
+
+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