Salome HOME
Merge from V7_3_BR branch 18/12/2013
[modules/geom.git] / src / XAO / tests / GeometryTest.hxx
1 #ifndef __XAO_GEOMETRY_TEST_HXX__
2 #define __XAO_GEOMETRY_TEST_HXX__
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6 namespace XAO
7 {
8     class GeometryTest: public CppUnit::TestFixture
9     {
10         CPPUNIT_TEST_SUITE(GeometryTest);
11         CPPUNIT_TEST(testGeometryElement);
12         CPPUNIT_TEST(testGeometryElementList);
13         CPPUNIT_TEST(testGeometry);
14         CPPUNIT_TEST(testGeometryErrors);
15         CPPUNIT_TEST_SUITE_END();
16
17     public:
18         void setUp();
19         void tearDown();
20         void cleanUp();
21
22         void testGeometryElement();
23         void testGeometryElementList();
24         void testGeometry();
25         void testGeometryErrors();
26         void testSetElement();
27     };
28 }
29
30 #endif // __XAO_GEOMETRY_TEST_HXX__