Salome HOME
refs #662: the tests for land cover presentations
[modules/hydro.git] / src / HYDRO_tests / test_HYDROData_Main.cxx
index 40d7c4a3f0d763458f7441b301c744bb284da2df..4248b2190a2bb38bb0811df53812d82a87352615 100644 (file)
@@ -28,6 +28,7 @@
 #include <SUIT_Session.h>
 #include <QApplication>
 #include <QColor>
+#include <QTest>
 #include <random.h>
 
 int main( int argc, char* argv[] )
@@ -38,8 +39,16 @@ int main( int argc, char* argv[] )
   SUIT_Session aSession;
 
   OCCViewer_ViewWindow* aWindow = TestViewer::viewWindow();
-  aWindow->setGeometry( 200, 200, 800, 600 );
+
+  int W = 800, H = 600;
+  aWindow->setGeometry( 200, 200, W, H );
   aWindow->show();
+  QTest::qWaitForWindowShown( aWindow );
+
+  int dy = 34;
+  //std::cout << dx << "," << dy << std::endl;
+  aWindow->resize( W, H+dy );
+  anApp.processEvents();
 
   std::string testPath = (argc > 1) ? std::string(argv[1]) : "";