Salome HOME
532ea956e8e19daed29a859f4cb20f8cdbe20cdd
[modules/yacs.git] / src / pmml / Test / BasicMainTest.hxx
1 // Copyright (C) 2007-2023  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef _BASICMAINTEST_HXX_
21 #define _BASICMAINTEST_HXX_
22
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>
30 #include <stdexcept>
31
32 #include <iostream>
33 #include <fstream>
34
35 #if !defined WIN32 && !defined __APPLE__
36 #include <fpu_control.h>
37 #endif
38
39 // ============================================================================
40 /*!
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.
43  */
44 // ============================================================================
45
46 int main(int argc, char* argv[])
47 {
48 #if !defined WIN32 && !defined __APPLE__
49   fpu_control_t cw = _FPU_DEFAULT & ~(_FPU_MASK_IM | _FPU_MASK_ZM | _FPU_MASK_OM);
50   _FPU_SETCW(cw);
51 #endif
52   // --- Create the event manager and test controller
53   CPPUNIT_NS::TestResult controller;
54
55   // ---  Add a listener that collects test result
56   CPPUNIT_NS::TestResultCollector result;
57   controller.addListener( &result );        
58
59   // ---  Add a listener that print dots as test run.
60 #if !defined WIN32 && !defined __APPLE__
61   CPPUNIT_NS::TextTestProgressListener progress;
62 #else
63   CPPUNIT_NS::BriefTestProgressListener progress;
64 #endif
65   controller.addListener( &progress );      
66
67   // ---  Get the top level suite from the registry
68
69   CPPUNIT_NS::Test *suite =
70     CPPUNIT_NS::TestFactoryRegistry::getRegistry().makeTest();
71
72   // ---  Adds the test to the list of test to run
73
74   CPPUNIT_NS::TestRunner runner;
75   runner.addTest( suite );
76   runner.run( controller);
77
78   // ---  Print test in a compiler compatible format.
79
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 );
84   outputter.write(); 
85
86   // ---  Run the tests.
87
88   bool wasSucessful = result.wasSuccessful();
89   testFile.close();
90
91   // ---  Return error code 1 if the one of test failed.
92
93   return wasSucessful ? 0 : 1;
94 }
95
96 #endif