Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Packets / extra-tests / AllBundles.test.cc
index 27553a4..b89640b 100644 (file)
@@ -23,9 +23,6 @@
 /** \file
     \brief AllBundles unit tests */
 
-//#include "PacketLink.test.hh"
-//#include "PacketLink.test.ih"
-
 // Custom includes
 #include <senf/Packets/DefaultBundle/EthernetPacket.hh>
 #include <senf/Packets/DefaultBundle/IPv6Packet.hh>
 #include <boost/test/test_tools.hpp>
 
 #define prefix_
-///////////////////////////////cc.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
-BOOST_AUTO_UNIT_TEST(packetLink)
+SENF_AUTO_UNIT_TEST(packetLink)
 {
     // This test shall test, if there is now duplicated packet registration in AllBundles.
     // The test will fail at the start with an assertion error in this case.
-    
+
     boost::uint8_t data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,             // source mac
                               0x00, 0x00, 0x00, 0x00, 0x00, 0x02,             // target mac
                               0x86, 0xdd,                                     // ethertype
 
-                              0x60, 0x00, 0x00, 0x00,                         // IP version, class, 
+                              0x60, 0x00, 0x00, 0x00,                         // IP version, class,
                                                                               //          flow label
                               0x00, 0x00,                                     // payload length
                               0x3B,                                           // no next header
                               0x10,                                           // hop limit
                               0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // source ip
-                              0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 
+                              0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
                               0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // target ip
                               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02 };
 
@@ -61,7 +58,7 @@ BOOST_AUTO_UNIT_TEST(packetLink)
     BOOST_CHECK( p.next().is<senf::IPv6Packet>() );
 }
 
-///////////////////////////////cc.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f