summaryrefslogtreecommitdiff
path: root/examples/hierarchy/main.cpp
blob: 6b7dbea67644721ee6a17b038302e8c3995779c7 (plain)
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_NS::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;
}