Salome HOME
PR: merge from BR_DATACONV_PR tag "mergeto_trunk_25oct06"
[modules/yacs.git] / src / bases / Test / BasicMainTest.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 // ============================================================================
36 /*!
37  *  Main program source for Unit Tests with cppunit package does not depend
38  *  on actual tests, so we use the same for all partial unit tests.
39  */
40 // ============================================================================
41
42 int main(int argc, char* argv[])
43 {
44   // --- Create the event manager and test controller
45   CPPUNIT_NS::TestResult controller;
46
47   // ---  Add a listener that colllects test result
48   CPPUNIT_NS::TestResultCollector result;
49   controller.addListener( &result );        
50
51   // ---  Add a listener that print dots as test run.
52 #ifdef WIN32
53   CPPUNIT_NS::TextTestProgressListener progress;
54 #else
55   CPPUNIT_NS::BriefTestProgressListener progress;
56 #endif
57   controller.addListener( &progress );      
58
59   // ---  Get the top level suite from the registry
60
61   CPPUNIT_NS::Test *suite =
62     CPPUNIT_NS::TestFactoryRegistry::getRegistry().makeTest();
63
64   // ---  Adds the test to the list of test to run
65
66   CPPUNIT_NS::TestRunner runner;
67   runner.addTest( suite );
68   runner.run( controller);
69
70   // ---  Print test in a compiler compatible format.
71
72   std::ofstream testFile;
73   testFile.open("UnitTestsResult", std::ios::out |  std::ios::trunc);
74   //CPPUNIT_NS::CompilerOutputter outputter( &result, std::cerr );
75   CPPUNIT_NS::CompilerOutputter outputter( &result, testFile );
76   outputter.write(); 
77
78   // ---  Run the tests.
79
80   bool wasSucessful = result.wasSuccessful();
81   testFile.close();
82
83   // ---  Return error code 1 if the one of test failed.
84
85   return wasSucessful ? 0 : 1;
86 }
87
88 #endif