Salome HOME
Update flag for calculation case during polyline changing.
[modules/hydro.git] / src / HYDROData / test_HYDROData_Polyline.h
1 #include <cppunit/extensions/HelperMacros.h>
2
3 class test_HYDROData_Polyline : public CppUnit::TestFixture {
4   CPPUNIT_TEST_SUITE(test_HYDROData_Polyline);
5   CPPUNIT_TEST(testPolyline);
6   CPPUNIT_TEST(testCopy);
7   CPPUNIT_TEST_SUITE_END();
8
9 private:
10
11 public:
12
13   void setUp() {}
14
15   void tearDown() {}
16
17   // checks save/restore QImages information
18   void testPolyline();
19
20   // checks the image properties copy/paste
21   void testCopy();
22 };
23
24 CPPUNIT_TEST_SUITE_REGISTRATION(test_HYDROData_Polyline);
25 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(test_HYDROData_Polyline, "HYDROData_Polyline");