Salome HOME
refs #430: incorrect coordinates in dump polyline
[modules/hydro.git] / src / HYDROData / test_HYDROData_Profile.h
1
2 #include <cppunit/extensions/HelperMacros.h>
3
4 class Handle_HYDROData_Profile;
5 class QString;
6
7 class test_HYDROData_Profile : public CppUnit::TestFixture {
8   CPPUNIT_TEST_SUITE(test_HYDROData_Profile);
9   CPPUNIT_TEST(testFileImport);
10   CPPUNIT_TEST(testCopy);
11   CPPUNIT_TEST_SUITE_END();
12
13 private:
14
15   static bool                             createTestFile( const QString& theFileName,
16                                                           const bool     theIsParametric );
17
18 public:
19
20   void                                    setUp() {}
21
22   void                                    tearDown() {}
23
24   // checks file importing information
25   void                                    testFileImport();
26
27   // checks the copy/paste mechanism
28   void                                    testCopy();
29
30 };
31
32 CPPUNIT_TEST_SUITE_REGISTRATION(test_HYDROData_Profile);
33 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(test_HYDROData_Profile, "HYDROData_Profile");