1 // Copyright (C) 2007-2015 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #ifndef _BASICMAINTEST_HXX_
21 #define _BASICMAINTEST_HXX_
23 #include <cppunit/CompilerOutputter.h>
24 #include <cppunit/TestResult.h>
25 #include <cppunit/TestResultCollector.h>
26 #include <cppunit/TextTestProgressListener.h>
27 #include <cppunit/BriefTestProgressListener.h>
28 #include <cppunit/extensions/TestFactoryRegistry.h>
29 #include <cppunit/TestRunner.h>
36 #include <fpu_control.h>
39 // ============================================================================
41 * Main program source for Unit Tests with cppunit package does not depend
42 * on actual tests, so we use the same for all partial unit tests.
44 // ============================================================================
46 int main(int argc, char* argv[])
49 fpu_control_t cw = _FPU_DEFAULT & ~(_FPU_MASK_IM | _FPU_MASK_ZM | _FPU_MASK_OM);
52 // --- Create the event manager and test controller
53 CPPUNIT_NS::TestResult controller;
55 // --- Add a listener that colllects test result
56 CPPUNIT_NS::TestResultCollector result;
57 controller.addListener( &result );
59 // --- Add a listener that print dots as test run.
61 CPPUNIT_NS::TextTestProgressListener progress;
63 CPPUNIT_NS::BriefTestProgressListener progress;
65 controller.addListener( &progress );
67 // --- Get the top level suite from the registry
69 CPPUNIT_NS::Test *suite =
70 CPPUNIT_NS::TestFactoryRegistry::getRegistry().makeTest();
72 // --- Adds the test to the list of test to run
74 CPPUNIT_NS::TestRunner runner;
75 runner.addTest( suite );
76 runner.run( controller);
78 // --- Print test in a compiler compatible format.
80 std::ofstream testFile;
81 testFile.open("UnitTestsResult", std::ios::out | std::ios::trunc);
82 //CPPUNIT_NS::CompilerOutputter outputter( &result, std::cerr );
83 CPPUNIT_NS::CompilerOutputter outputter( &result, testFile );
88 bool wasSucessful = result.wasSuccessful();
91 // --- Return error code 1 if the one of test failed.
93 return wasSucessful ? 0 : 1;