Action_Thermostats
Adding_MD_integration_tests
Adding_StructOpt_integration_tests
AutomationFragmentation_failures
Candidate_v1.6.1
ChemicalSpaceEvaluator
Enhanced_StructuralOptimization
Enhanced_StructuralOptimization_continued
Exclude_Hydrogens_annealWithBondGraph
Fix_Verbose_Codepatterns
ForceAnnealing_with_BondGraph
ForceAnnealing_with_BondGraph_continued
ForceAnnealing_with_BondGraph_continued_betteresults
ForceAnnealing_with_BondGraph_contraction-expansion
Gui_displays_atomic_force_velocity
JobMarket_RobustOnKillsSegFaults
JobMarket_StableWorkerPool
PythonUI_with_named_parameters
Recreated_GuiChecks
StoppableMakroAction
TremoloParser_IncreasedPrecision
Rev | Line | |
---|
[41e8e2] | 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 |
|
---|
| 26 | int 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.