Salome HOME
correct selection mode activation
[modules/hydro.git] / src / HYDRO_tests / test_HYDROData_Main.cxx
index febcf83b1adcdf581f2ae835386bcb911339ea74..74bb9315a863e903d4f1108102d06f6913aa95a9 100644 (file)
 #include <SUIT_Session.h>
 #include <QApplication>
 #include <QColor>
-#include <time.h>
+#include <QTest>
 
 int main( int argc, char* argv[] )
 {
-  srand( 0 );
-
   QApplication anApp( argc, 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]) : "";
 
@@ -63,7 +69,7 @@ int main( int argc, char* argv[] )
   runner.addTest( registry.makeTest() );   
   try
   {
-    std::cout << "Running "  <<  testPath;
+    std::cout << "Running tests "  << testPath << "..." << std::endl;
     runner.Run( controller );
 
     std::cerr << std::endl;