Salome HOME
Debug minor changes.
[modules/hydro.git] / src / HYDROData / test_HYDROData_Entity.h
1 #include <cppunit/extensions/HelperMacros.h>
2
3 class test_HYDROData_Entity : public CppUnit::TestFixture {
4   CPPUNIT_TEST_SUITE(test_HYDROData_Entity);
5   CPPUNIT_TEST(testName);
6   CPPUNIT_TEST(testRemove);
7   CPPUNIT_TEST(testCopy);
8   CPPUNIT_TEST_SUITE_END();
9
10 private:
11
12 public:
13
14   void setUp() {}
15
16   void tearDown() {}
17
18   // checks the "name" methods
19   void testName();
20
21   // checks the remove of object
22   void testRemove();
23
24   // checks the copying of object
25   void testCopy();
26 };
27
28 CPPUNIT_TEST_SUITE_REGISTRATION(test_HYDROData_Entity);
29 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(test_HYDROData_Entity, "HYDROData_Entity");