Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/type_traits/test/init.cpp @ 29

Last change on this file since 29 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 621 bytes
Line 
1
2//  (C) Copyright John Maddock 2000.
3//  Use, modification and distribution are subject to the
4//  Boost Software License, Version 1.0. (See accompanying file
5//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7#include "test.hpp"
8
9boost::unit_test_framework::test_suite* get_master_unit(const char* name)
10{
11   static boost::unit_test_framework::test_suite* ptest_suite = 0;
12   if(0 == ptest_suite)
13      ptest_suite = BOOST_TEST_SUITE( name ? name : "" );
14   return ptest_suite;
15}
16
17boost::unit_test_framework::test_suite* init_unit_test_suite ( int , char* [] )
18{
19   return get_master_unit();
20}
21
22
23
Note: See TracBrowser for help on using the repository browser.