File: base.cc

package info (click to toggle)
jags 4.3.2-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,420 kB
  • sloc: ansic: 46,229; cpp: 37,971; sh: 4,639; yacc: 1,791; makefile: 919; fortran: 773; lex: 368; lisp: 105
file content (31 lines) | stat: -rw-r--r-- 830 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
 * Test code in base module
 */

#include <cppunit/CompilerOutputter.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
#include <cppunit/ui/text/TestRunner.h>

#include <base/testbase.h>

int main(int argc, char* argv[])
{
    init_base_test();

    // Get the top level suite from the registry
    CppUnit::Test *suite = 
	CppUnit::TestFactoryRegistry::getRegistry().makeTest();

    // Adds the test to the list of tests to run
    CppUnit::TextUi::TestRunner runner;
    runner.addTest( suite );

    // Change the default outputter to a compiler error format outputter
    runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(),
							 std::cerr ) );
    // Run the tests.
    bool wasSucessful = runner.run();

    // Return error code 1 if the one of test failed.
    return wasSucessful ? 0 : 1;
}