blob: 4b626125543ccf1b778684790d8a4401625fec71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <cppunit/TextTestRunner.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
#include "CppUnitTestSuite.h"
int
main( int argc, char* argv[] )
{
CppUnit::TextTestRunner runner;
runner.addTest( CppUnitTest::suite() );
bool wasSucessful = runner.run();
return wasSucessful ? 0 : 1;
}
|