Salome HOME
ad54e0773b7e931f525e08002bfcfce4f7220689
[modules/geom.git] / src / XAO / tests / GroupTest.hxx
1 #ifndef __XAO_GROUP_TEST_HXX__
2 #define __XAO_GROUP_TEST_HXX__
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6 namespace XAO
7 {
8     class GroupTest: public CppUnit::TestFixture
9     {
10         CPPUNIT_TEST_SUITE(GroupTest);
11         CPPUNIT_TEST(testGroup);
12         CPPUNIT_TEST(testGroupErrors);
13         CPPUNIT_TEST_SUITE_END();
14
15     public:
16         void setUp();
17         void tearDown();
18         void cleanUp();
19
20         void testGroup();
21         void testGroupErrors();
22     };
23 }
24
25 #endif // __XAO_GROUP_TEST_HXX__