Version: 8.3.0
MainTest.hxx
Go to the documentation of this file.
1 // Copyright (C) 2015-2016 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 _MAINTEST_HXX_
21 #define _MAINTEST_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 // ============================================================================
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.txt", 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