X-Git-Url: http://git.localhorst.tv/?p=blobs.git;a=blobdiff_plain;f=tst%2Fui%2FStringTest.hpp;fp=tst%2Fui%2FStringTest.hpp;h=fc7bf971ddf9ba473d061518360b084e3596a6b5;hp=0000000000000000000000000000000000000000;hb=e50ebad87d4d96fa47875d194575be912358c15f;hpb=ceab8c2ee64d208fb23836175df2947151b0382b diff --git a/tst/ui/StringTest.hpp b/tst/ui/StringTest.hpp new file mode 100644 index 0000000..fc7bf97 --- /dev/null +++ b/tst/ui/StringTest.hpp @@ -0,0 +1,46 @@ +#ifndef BLOBS_TEST_UI_STRINGTEST_HPP_ +#define BLOBS_TEST_UI_STRINGTEST_HPP_ + +#include + + +namespace blobs { +namespace ui { +namespace test { + +class StringTest +: public CppUnit::TestFixture { + +CPPUNIT_TEST_SUITE(StringTest); + +CPPUNIT_TEST(testAngle); +CPPUNIT_TEST(testDecimal); +CPPUNIT_TEST(testLength); +CPPUNIT_TEST(testMass); +CPPUNIT_TEST(testNumber); +CPPUNIT_TEST(testPercentage); +CPPUNIT_TEST(testTime); +CPPUNIT_TEST(testVector); + +CPPUNIT_TEST_SUITE_END(); + +public: + void setUp(); + void tearDown(); + + void testAngle(); + void testDecimal(); + void testLength(); + void testMass(); + void testNumber(); + void testPercentage(); + void testTime(); + void testVector(); + +}; + +} +} +} + +#endif