Utils/Console: Add short help to 'ls' output
[senf.git] / Packets / DefaultBundle / IPv4Packet.test.cc
index 26d630c..a93e631 100644 (file)
@@ -20,7 +20,8 @@
 // Free Software Foundation, Inc.,
 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-// Unit tests
+/** \file
+    \brief IPv4Packet unit tests */
 
 //#include "IPv4Packet.test.hh"
 //#include "IPv4Packet.test.ih"
 
 using namespace senf;
 
-BOOST_AUTO_UNIT_TEST(ipV4Packet_packet)
+BOOST_AUTO_UNIT_TEST(ipV4Packet_parse)
 {
-
-    unsigned char data[] = { 0x01, 0x02, 0x03, 0x04,
-                             0x05, 0x06, 0x07, 0x08,
-                             0x09, 0x0A, 0x0B, 0x0C,
-                             0x11, 0x12, 0x13, 0x14,
-                             0x15, 0x16, 0x17, 0x18
-                           };
+    unsigned char data[] = {
+            0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
+            0x09, 0x0A, 0x0B, 0x0C, 0x11, 0x12, 0x13, 0x14,
+            0x15, 0x16, 0x17, 0x18
+    };
 
     senf::IPv4Packet p (senf::IPv4Packet::create(data));