1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #include <cppunit/extensions/TestFactoryRegistry.h>
20 #include <cppunit/CompilerOutputter.h>
21 #include <cppunit/TestResult.h>
22 #include <cppunit/TestResultCollector.h>
24 #include <TestViewer.h>
25 #include <TestLib_Listener.h>
26 #include <TestLib_Runner.h>
27 #include <OCCViewer_ViewWindow.h>
28 #include <SUIT_Session.h>
29 #include <QApplication>
34 #include "HYDRO_trace.hxx"
36 int main( int argc, char* argv[] )
38 QApplication anApp( argc, argv );
39 SUIT_Session aSession;
40 aSession.startApplication("std");
42 OCCViewer_ViewWindow* aWindow = TestViewer::viewWindow();
45 aWindow->setGeometry( 200, 200, W, H );
47 QTest::qWaitForWindowShown( aWindow );
50 //std::cout << dx << "," << dy << std::endl;
51 aWindow->resize( W, H+dy );
52 anApp.processEvents();
54 std::string testPath = (argc > 1) ? std::string(argv[1]) : "";
56 // Create the event manager and test controller
57 CppUnit::TestResult controller;
59 // Add a listener that collects test result
60 CppUnit::TestResultCollector result;
61 controller.addListener( &result );
63 // Add a listener that print dots as test run.
64 TestLib_Listener progress;
65 controller.addListener( &progress );
67 CppUnit::TestFactoryRegistry& registry =
68 CppUnit::TestFactoryRegistry::getRegistry();
69 // Add the top suite to the test runner
70 TestLib_Runner runner;
71 QString aPath = qgetenv( "HYDRO_SRC_DIR" ) + "/src/tests.cfg";
72 runner.Load( aPath.toStdString() );
73 runner.addTest( registry.makeTest() );
76 std::cout << "Running tests " << testPath << "..." << std::endl;
77 runner.Run( controller );
79 std::cerr << std::endl;
81 // Print test in a compiler compatible format.
82 CPPUNIT_NS::CompilerOutputter outputter( &result, CPPUNIT_NS::stdCOut() );
85 catch ( std::invalid_argument &e ) // Test path not resolved
87 std::cerr << std::endl
88 << "ERROR: " << e.what()
92 bool isOK = result.wasSuccessful();
93 DEBTRACE("End of tests");
95 aSession.closeSession();
97 DEBTRACE("--- TODO: exception on exit..."); // TODO: exception on exit...
98 return result.wasSuccessful() ? 0 : 1;