File: test.C

package info (click to toggle)
witty 3.1.2-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 45,512 kB
  • ctags: 35,832
  • sloc: cpp: 69,469; ansic: 66,945; xml: 4,383; sh: 594; perl: 108; makefile: 106
file content (21 lines) | stat: -rw-r--r-- 605 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <boost/test/unit_test.hpp>
#include <boost/test/included/unit_test.hpp>

using boost::unit_test_framework::test_suite;

#include "chart/WChartTest.h"
#include "dbo/DboTest.h"
#include "dbo/DboTest2.h"
#include "wdatetime/WDateTimeTest.h"

boost::unit_test::test_suite* init_unit_test_suite(int /* argc */, char * * const /* argv */)
{
  test_suite *top_test_suite = BOOST_TEST_SUITE("Master test suite");

  top_test_suite->add(new WDateTimeTest());
  top_test_suite->add(new WChartTest());
  top_test_suite->add(new DboTest());
  top_test_suite->add(new DboTest2());

  return top_test_suite;
}