]> SALOME platform Git repositories - modules/geom.git/blobdiff - 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
diff --git a/src/XAO/tests/XaoUtilsTest.hxx b/src/XAO/tests/XaoUtilsTest.hxx
new file mode 100644 (file)
index 0000000..28860d8
--- /dev/null
@@ -0,0 +1,33 @@
+#ifndef __XAO_UTILS_TEST_HXX__
+#define __XAO_UTILS_TEST_HXX__
+
+#include <cppunit/extensions/HelperMacros.h>
+
+namespace XAO
+{
+    class XaoUtilsTest: public CppUnit::TestFixture
+    {
+        CPPUNIT_TEST_SUITE(XaoUtilsTest);
+        CPPUNIT_TEST(testBoolean);
+        CPPUNIT_TEST(testInteger);
+        CPPUNIT_TEST(testDouble);
+        CPPUNIT_TEST(testDimension);
+        CPPUNIT_TEST(testType);
+        CPPUNIT_TEST(testFormat);
+        CPPUNIT_TEST_SUITE_END();
+
+    public:
+        void setUp();
+        void tearDown();
+        void cleanUp();
+
+        void testBoolean();
+        void testInteger();
+        void testDouble();
+        void testDimension();
+        void testType();
+        void testFormat();
+    };
+}
+
+#endif // __XAO_FIELD_TEST_HXX__