Version: 8.3.0
BasicMainTest.hxx
Go to the documentation of this file.
1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 
23 #ifndef _BASICMAINTEST_HXX_
24 #define _BASICMAINTEST_HXX_
25 
26 #include <cppunit/CompilerOutputter.h>
27 #include <cppunit/TestResult.h>
28 #include <cppunit/TestResultCollector.h>
29 #include <cppunit/TextTestProgressListener.h>
30 #include <cppunit/BriefTestProgressListener.h>
31 #include <cppunit/extensions/TestFactoryRegistry.h>
32 #include <cppunit/TestRunner.h>
33 #include <stdexcept>
34 
35 #include <iostream>
36 #include <fstream>
37 
38 // ============================================================================
43 // ============================================================================
44 
45 int main(int argc, char* argv[])
46 {
47  // --- Create the event manager and test controller
48  CPPUNIT_NS::TestResult controller;
49 
50  // --- Add a listener that colllects test result
51  CPPUNIT_NS::TestResultCollector result;
52  controller.addListener( &result );
53 
54  // --- Add a listener that print dots as test run.
55 #ifdef WIN32
56  CPPUNIT_NS::TextTestProgressListener progress;
57 #else
58  CPPUNIT_NS::BriefTestProgressListener progress;
59 #endif
60  controller.addListener( &progress );
61 
62  // --- Get the top level suite from the registry
63 
64  CPPUNIT_NS::Test *suite =
65  CPPUNIT_NS::TestFactoryRegistry::getRegistry().makeTest();
66 
67  // --- Adds the test to the list of test to run
68 
69  CPPUNIT_NS::TestRunner runner;
70  runner.addTest( suite );
71  runner.run( controller);
72 
73  // --- Print test in a compiler compatible format.
74 
75  std::ofstream testFile;
76  testFile.open("UnitTestsResult", std::ios::out | std::ios::trunc);
77  //CPPUNIT_NS::CompilerOutputter outputter( &result, std::cerr );
78  CPPUNIT_NS::CompilerOutputter outputter( &result, testFile );
79  outputter.write();
80 
81  // --- Run the tests.
82 
83  bool wasSucessful = result.wasSuccessful();
84  testFile.close();
85 
86  // --- Return error code 1 if the one of test failed.
87 
88  return wasSucessful ? 0 : 1;
89 }
90 
91 #endif