Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:41

0001 /**
0002  * This file defines the executable that will run the tests.
0003  *
0004  * Author: M. De Mattia demattia@.pd.infn.it
0005  *
0006  * class description:
0007  * 
0008  *
0009  * Version: $Id: MasterTestSiStripObjects.cpp,v 1.1 2010/01/18 12:26:26 demattia Exp $
0010  */
0011 
0012 // In case this does not work anymore uncomment the rest
0013 // #include <Utilities/Testing/interface/CppUnit_testdriver.icpp>
0014 
0015 #include <cppunit/TestFixture.h>
0016 #include <cppunit/extensions/HelperMacros.h>
0017 #include <cppunit/TestResult.h>
0018 #include <cppunit/TestCaller.h>
0019 #include <cppunit/TestRunner.h>
0020 #include <cppunit/ui/text/TestRunner.h>
0021 #include <cppunit/TestResultCollector.h>
0022 #include <cppunit/TextTestProgressListener.h>
0023 #include <cppunit/CompilerOutputter.h>
0024 #include <cppunit/extensions/TestFactoryRegistry.h>
0025 #include <cppunit/CompilerOutputter.h>
0026 // #include <cppunit/TextTestProgressListener.h>
0027 #include <cppunit/BriefTestProgressListener.h> 
0028 
0029 /**
0030  * Main function used to run all tests.
0031  * We are not using the one in #include <Utilities/Testing/interface/CppUnit_testdriver.icpp>
0032  * because we use the BriefTestProgressListener to output the name of each test.
0033  */
0034 
0035 int main( int argc, char* argv[] )
0036 {
0037   std::string testPath = (argc > 1) ? std::string(argv[1]) : "";
0038   CppUnit::TextUi::TestRunner runner;
0039   CppUnit::TestFactoryRegistry &registry = CppUnit::TestFactoryRegistry::getRegistry();
0040   runner.addTest( registry.makeTest() );
0041 
0042   // Outputs the name of each test when it is executed.
0043   CppUnit::BriefTestProgressListener progress;
0044   runner.eventManager().addListener( &progress );
0045   runner.run();
0046 }
0047 
0048