/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Library/boost/libs/throw_exception/test/throw_exception_test4.cpp
111 строк
3 KB
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
// Copyright 2018 Peter Dimov // // Distributed under the Boost Software License, Version 1.0. // // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt #include <boost/throw_exception.hpp> #include <boost/exception/get_error_info.hpp> #include <boost/detail/lightweight_test.hpp> class my_exception: public std::exception { }; class my_exception2: public std::exception, public boost::exception { }; class my_exception3: public std::exception, public virtual boost::exception { }; int main() { try { BOOST_THROW_EXCEPTION( my_exception() ); } catch( boost::exception const & x ) { { char const * const * file = boost::get_error_info<boost::throw_file>( x ); BOOST_TEST( file != 0 ); BOOST_TEST_CSTR_EQ( *file, __FILE__ ); } { int const * line = boost::get_error_info<boost::throw_line>( x ); BOOST_TEST( line != 0 ); BOOST_TEST_EQ( *line, 28 ); } { char const * const * function = boost::get_error_info<boost::throw_function>( x ); BOOST_TEST( function != 0 ); BOOST_TEST_CSTR_EQ( *function, BOOST_CURRENT_FUNCTION ); } } try { BOOST_THROW_EXCEPTION( my_exception2() ); } catch( boost::exception const & x ) { { char const * const * file = boost::get_error_info<boost::throw_file>( x ); BOOST_TEST( file != 0 ); BOOST_TEST_CSTR_EQ( *file, __FILE__ ); } { int const * line = boost::get_error_info<boost::throw_line>( x ); BOOST_TEST( line != 0 ); BOOST_TEST_EQ( *line, 56 ); } { char const * const * function = boost::get_error_info<boost::throw_function>( x ); BOOST_TEST( function != 0 ); BOOST_TEST_CSTR_EQ( *function, BOOST_CURRENT_FUNCTION ); } } try { BOOST_THROW_EXCEPTION( my_exception3() ); } catch( boost::exception const & x ) { { char const * const * file = boost::get_error_info<boost::throw_file>( x ); BOOST_TEST( file != 0 ); BOOST_TEST_CSTR_EQ( *file, __FILE__ ); } { int const * line = boost::get_error_info<boost::throw_line>( x ); BOOST_TEST( line != 0 ); BOOST_TEST_EQ( *line, 84 ); } { char const * const * function = boost::get_error_info<boost::throw_function>( x ); BOOST_TEST( function != 0 ); BOOST_TEST_CSTR_EQ( *function, BOOST_CURRENT_FUNCTION ); } } return boost::report_errors(); }