#include <cppunit/extensions/TestFactoryRegistry.h>
#include <cppunit/ui/text/TestRunner.h>
Go to the source code of this file.
Functions | |
int | main (int argc, char **argv) |
int main | ( | int | argc, | |
char ** | argv | |||
) |
Definition at line 4 of file tToolUnitTest.cpp.
00005 { 00006 CppUnit::TextUi::TestRunner runner; 00007 CppUnit::TestFactoryRegistry ®istry = CppUnit::TestFactoryRegistry::getRegistry(); 00008 runner.addTest( registry.makeTest() ); 00009 bool wasSuccessful = runner.run( "", false ); 00010 return wasSuccessful; 00011 }