X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDRO_tests%2Ftest_HYDROData_Main.cxx;h=d50bdcf7831fcec5954238c6a03c7a52385c759b;hb=15aed67b5f26dad1f17035be35bcd570e947158c;hp=151bb2b561eaefb87d4793b2e15ae7fc9cc2a2d1;hpb=28614025d5e500040639e813c32697e53b05e1e0;p=modules%2Fhydro.git diff --git a/src/HYDRO_tests/test_HYDROData_Main.cxx b/src/HYDRO_tests/test_HYDROData_Main.cxx index 151bb2b5..d50bdcf7 100644 --- a/src/HYDRO_tests/test_HYDROData_Main.cxx +++ b/src/HYDRO_tests/test_HYDROData_Main.cxx @@ -28,25 +28,35 @@ #include #include #include -#include +#include + +#define _DEVDEBUG_ +#include "HYDRO_trace.hxx" int main( int argc, char* argv[] ) { - srand( 0 ); - QApplication anApp( argc, argv ); SUIT_Session aSession; + aSession.startApplication("std"); 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]) : ""; // Create the event manager and test controller CppUnit::TestResult controller; - // Add a listener that colllects test result + // Add a listener that collects test result CppUnit::TestResultCollector result; controller.addListener( &result ); @@ -79,7 +89,11 @@ int main( int argc, char* argv[] ) << std::endl; return 0; } - - //anApp.exec(); + bool isOK = result.wasSuccessful(); + DEBTRACE("End of tests"); + aWindow->close(); + aSession.closeSession(); + anApp.exit(!isOK); + DEBTRACE("--- TODO: exception on exit..."); // TODO: exception on exit... return result.wasSuccessful() ? 0 : 1; }