From e41c645456b5691019a4960f84cc0c58f5c875a9 Mon Sep 17 00:00:00 2001 From: g0dil <g0dil@wiback.org> Date: Tue, 23 Sep 2008 11:00:27 +0000 Subject: [PATCH] Packets: Absolutely rudimentary new finalize() API tests --- Packets/Packet.test.cc | 5 ++++- Utils/Exception.hh | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Packets/Packet.test.cc b/Packets/Packet.test.cc index 2da754dfb..70b3e1d5e 100644 --- a/Packets/Packet.test.cc +++ b/Packets/Packet.test.cc @@ -161,8 +161,11 @@ BOOST_AUTO_UNIT_TEST(packet) packet.finalizeAll(); BOOST_CHECK_EQUAL( packet.last().as<BarPacket>()->type(), - BarPacket::type::parser::type_t::value_type(-1) ); + BarPacket::Parser::type_t::value_type(-1) ); packet.last().append(FooPacket::create()); + packet.finalizeThis(); + packet.finalizeTo<BarPacket>(); + packet.finalizeTo(packet.find<BarPacket>()); packet.finalizeAll(); BOOST_CHECK_EQUAL( packet.find<BarPacket>()->type(), 1u ); diff --git a/Utils/Exception.hh b/Utils/Exception.hh index 7abf26cbb..bb947e2c4 100644 --- a/Utils/Exception.hh +++ b/Utils/Exception.hh @@ -96,9 +96,9 @@ SENF_WRAP_EXC(std::bad_cast) SENF_WRAP_EXC(somelib::FooException) } - \endcode The re-thrown exception can then be caught as <tt>std::bad_cast</tt> or as - senf::ExceptionMixin as needed. It is safe, to wrap an exception twice (the macro will detect - this case). + \endcode + The re-thrown exception can then be caught as <tt>std::bad_cast</tt> or as senf::ExceptionMixin + as needed. It is safe, to wrap an exception twice (the macro will detect this case). \code bar() { try { -- GitLab