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