Salome HOME
The code refactoring since the ImageComposer API has been changed (Feature #6).
[modules/hydro.git] / src / HYDROData / test_HYDROData_Bathymetry.h
1
2 #include <cppunit/extensions/HelperMacros.h>
3
4 class Handle_HYDROData_Bathymetry;
5
6 class test_HYDROData_Bathymetry : public CppUnit::TestFixture {
7   CPPUNIT_TEST_SUITE(test_HYDROData_Bathymetry);
8   CPPUNIT_TEST(testFileImport);
9   CPPUNIT_TEST(testCopy);
10   CPPUNIT_TEST_SUITE_END();
11
12 private:
13
14   static bool                             createTestFile( const QString& theFileName );
15
16 public:
17
18   void                                    setUp() {}
19
20   void                                    tearDown() {}
21
22   // checks file importing information
23   void                                    testFileImport();
24
25   // checks the copy/paste mechanism
26   void                                    testCopy();
27
28 };
29
30 CPPUNIT_TEST_SUITE_REGISTRATION(test_HYDROData_Bathymetry);
31 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(test_HYDROData_Bathymetry, "HYDROData_Bathymetry");