[857] | 1 | // (C) Copyright Gennadiy Rozental 2001-2005.
|
---|
| 2 | // Distributed under the Boost Software License, Version 1.0.
|
---|
| 3 | // (See accompanying file LICENSE_1_0.txt or copy at
|
---|
| 4 | // http://www.boost.org/LICENSE_1_0.txt)
|
---|
| 5 |
|
---|
| 6 | // See http://www.boost.org/libs/test for the library home page.
|
---|
| 7 | //
|
---|
| 8 | // File : $RCSfile: unit_test.hpp,v $
|
---|
| 9 | //
|
---|
| 10 | // Version : $Revision: 1.15 $
|
---|
| 11 | //
|
---|
| 12 | // Description : wrapper include . To be used by end-user
|
---|
| 13 | // ***************************************************************************
|
---|
| 14 |
|
---|
| 15 | #ifndef BOOST_TEST_UNIT_TEST_HPP_071894GER
|
---|
| 16 | #define BOOST_TEST_UNIT_TEST_HPP_071894GER
|
---|
| 17 |
|
---|
| 18 | #include <boost/test/test_tools.hpp>
|
---|
| 19 | #include <boost/test/unit_test_suite.hpp>
|
---|
| 20 |
|
---|
| 21 | #if 0
|
---|
| 22 | #ifndef BOOST_TEST_NO_AUTO_LINK
|
---|
| 23 |
|
---|
| 24 | #define BOOST_LIB_NAME unix_test_framework
|
---|
| 25 | #define BOOST_LIB_DIAGNOSTIC yes
|
---|
| 26 | #include <boost/config/auto_link.hpp>
|
---|
| 27 |
|
---|
| 28 | #endif
|
---|
| 29 | #endif
|
---|
| 30 |
|
---|
| 31 | // ***************************************************************************
|
---|
| 32 | // Revision History :
|
---|
| 33 | //
|
---|
| 34 | // $Log: unit_test.hpp,v $
|
---|
| 35 | // Revision 1.15 2005/02/20 08:27:06 rogeeff
|
---|
| 36 | // This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
|
---|
| 37 | //
|
---|
| 38 | // Revision 1.14 2005/02/01 06:40:06 rogeeff
|
---|
| 39 | // copyright update
|
---|
| 40 | // old log entries removed
|
---|
| 41 | // minor stilistic changes
|
---|
| 42 | // depricated tools removed
|
---|
| 43 | //
|
---|
| 44 | // ***************************************************************************
|
---|
| 45 |
|
---|
| 46 | #endif // BOOST_TEST_UNIT_TEST_HPP_071894GER
|
---|