]> SALOME platform Git repositories - modules/geom.git/blob - src/XAO/tests/XaoUtilsTest.hxx
Salome HOME
Merge from BR_V7_main_Field branch (02/09/2013)
[modules/geom.git] / src / XAO / tests / XaoUtilsTest.hxx
1 #ifndef __XAO_UTILS_TEST_HXX__
2 #define __XAO_UTILS_TEST_HXX__
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6 namespace XAO
7 {
8     class XaoUtilsTest: public CppUnit::TestFixture
9     {
10         CPPUNIT_TEST_SUITE(XaoUtilsTest);
11         CPPUNIT_TEST(testBoolean);
12         CPPUNIT_TEST(testInteger);
13         CPPUNIT_TEST(testDouble);
14         CPPUNIT_TEST(testDimension);
15         CPPUNIT_TEST(testType);
16         CPPUNIT_TEST(testFormat);
17         CPPUNIT_TEST_SUITE_END();
18
19     public:
20         void setUp();
21         void tearDown();
22         void cleanUp();
23
24         void testBoolean();
25         void testInteger();
26         void testDouble();
27         void testDimension();
28         void testType();
29         void testFormat();
30     };
31 }
32
33 #endif // __XAO_FIELD_TEST_HXX__