source: ThirdParty/CodePatterns/src/unittests/UnitTestMain.cpp

Candidate_v1.6.1
Last change on this file was 41e8e2, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '084729c5923f0123e695fbe2548b393288c1f13d' as 'ThirdParty/CodePatterns'

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010 University of Bonn. All rights reserved.
5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
6 */
7
8/*
9 * UnitTestMain.cpp
10 *
11 * Created on: Feb 24, 2010
12 * Author: heber
13 */
14
15// include config.h
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
20#include <cppunit/CompilerOutputter.h>
21#include <cppunit/extensions/TestFactoryRegistry.h>
22#include <cppunit/ui/text/TestRunner.h>
23
24/********************************************** Main routine **************************************/
25
26int main(int argc, char **argv)
27{
28 // Get the top level suite from the registry
29 CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest();
30
31 // Adds the test to the list of test to run
32 CppUnit::TextUi::TestRunner runner;
33 runner.addTest( suite );
34
35 // Change the default outputter to a compiler error format outputter
36 runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(),
37 std::cerr ) );
38 // Run the tests.
39 bool wasSucessful = runner.run();
40
41 // Return error code 1 if the one of test failed.
42 return wasSucessful ? 0 : 1;
43};
44
Note: See TracBrowser for help on using the repository browser.