]> git.localhorst.tv Git - blobs.git/blob - tst/ui/StringTest.hpp
test UI string conversion
[blobs.git] / tst / ui / StringTest.hpp
1 #ifndef BLOBS_TEST_UI_STRINGTEST_HPP_
2 #define BLOBS_TEST_UI_STRINGTEST_HPP_
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6
7 namespace blobs {
8 namespace ui {
9 namespace test {
10
11 class StringTest
12 : public CppUnit::TestFixture {
13
14 CPPUNIT_TEST_SUITE(StringTest);
15
16 CPPUNIT_TEST(testAngle);
17 CPPUNIT_TEST(testDecimal);
18 CPPUNIT_TEST(testLength);
19 CPPUNIT_TEST(testMass);
20 CPPUNIT_TEST(testNumber);
21 CPPUNIT_TEST(testPercentage);
22 CPPUNIT_TEST(testTime);
23 CPPUNIT_TEST(testVector);
24
25 CPPUNIT_TEST_SUITE_END();
26
27 public:
28         void setUp();
29         void tearDown();
30
31         void testAngle();
32         void testDecimal();
33         void testLength();
34         void testMass();
35         void testNumber();
36         void testPercentage();
37         void testTime();
38         void testVector();
39
40 };
41
42 }
43 }
44 }
45
46 #endif