Scheduler: Add timeout() member to TimerEvent
[senf.git] / Socket / Protocols / Raw / TunTapSocketHandle.test.cc
index 45d7154..fc0c98e 100644 (file)
 // Free Software Foundation, Inc.,
 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-// Unit tests
+/** \file
+    \brief TunTapSocketHandle unit tests */
 
 //#include "TunTapSocketHandle.test.hh"
 //#include "TunTapSocketHandle.test.ih"
 
-#include "TunTapSocketHandle.hh"
-#include "PacketSocketHandle.hh"
-
 // Custom includes
 #include <iostream>
 #include <unistd.h>
 #include <stdlib.h>
 
+#include "TunTapSocketHandle.hh"
+#include "PacketSocketHandle.hh"
+
 #include "../../../Utils/auto_unit_test.hh"
 #include <boost/test/test_tools.hpp>
 
@@ -51,7 +52,7 @@ BOOST_AUTO_UNIT_TEST(tapSocketHandle)
     BOOST_CHECK_EQUAL( WEXITSTATUS(ret), 0);
 
     senf::PacketSocketHandle sock;
-    BOOST_CHECK_NO_THROW( sock.bind(senf::LLSocketAddress("tap_unittest")) );
+    SENF_CHECK_NO_THROW( sock.bind(senf::LLSocketAddress("tap_unittest")) );
 }
 
 ///////////////////////////////cc.e////////////////////////////////////////