1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// -*- C++ -*-
//
// Package: Core
// Class : unittest_main
//
// Implementation:
// Creates the 'main' routine for the auto tests
//
// Original Author: Chris Jones
// Created: Fri Jan 18 10:19:19 EST 2008
//
// system include files
// user include files
#define BOOST_AUTO_TEST_MAIN
#include <boost/test/unit_test.hpp>
|