File indexing completed on 2025-12-16 10:09:48
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef BOOST_TEST_DATA_CONFIG_HPP_112611GER
0013 #define BOOST_TEST_DATA_CONFIG_HPP_112611GER
0014
0015
0016 #include <boost/test/detail/config.hpp>
0017 #include <boost/test/detail/throw_exception.hpp>
0018
0019
0020 #include <stdexcept> // for std::logic_error
0021
0022
0023
0024 #if defined(BOOST_NO_CXX11_HDR_RANDOM) || defined(BOOST_TEST_DOXYGEN_DOC__)
0025
0026 #define BOOST_TEST_NO_RANDOM_DATASET_AVAILABLE
0027
0028 #endif
0029
0030 #if defined(BOOST_NO_CXX11_HDR_TUPLE) || defined(BOOST_TEST_DOXYGEN_DOC__)
0031
0032
0033 #define BOOST_TEST_NO_GRID_COMPOSITION_AVAILABLE
0034
0035
0036 #define BOOST_TEST_NO_ZIP_COMPOSITION_AVAILABLE
0037
0038 #endif
0039
0040
0041 #if defined(_MSC_VER) && _MSC_VER < 1900
0042 # define BOOST_TEST_ERRONEOUS_INIT_LIST
0043 #endif
0044
0045
0046
0047 #define BOOST_TEST_DS_ERROR( msg ) BOOST_TEST_I_THROW( std::logic_error( msg ) )
0048 #define BOOST_TEST_DS_ASSERT( cond, msg ) BOOST_TEST_I_ASSRT( cond, std::logic_error( msg ) )
0049
0050 #endif