Menu

[r285]: / trunk / cppunit / examples / hierarchy / main.cpp  Maximize  Restore  History

Download this file

24 lines (16 with data), 416 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <cppunit/ui/text/TestRunner.h>
#include "BoardGame.h"
#include "Chess.h"
#include "BoardGameTest.h"
#include "ChessTest.h"
int
main(int argc, char** argv)
{
CppUnit::TextUi::TestRunner runner;
runner.addTest( BoardGameTest<BoardGame>::suite() );
runner.addTest( ChessTest<Chess>::suite() );
bool wasSucessful = runner.run();
// should be:
// return wasSuccessful ? 0 : 1;
return 0;
}
MongoDB Logo MongoDB