// we use gettimeofday() now to determine the packet rcv time, since on some boxes...
[senf.git] / senf / Socket / Protocols / UN / UNDatagramSocketHandle.test.cc
index 2297336..5e03b6b 100644 (file)
 // Custom includes
 #include "UNDatagramSocketHandle.hh"
 
-#include "../../../Utils/auto_unit_test.hh"
+#include <senf/Utils/auto_unit_test.hh>
 #include <boost/test/test_tools.hpp>
 
 #define prefix_
 ///////////////////////////////cc.p////////////////////////////////////////
 
-BOOST_AUTO_UNIT_TEST(unDatagramSocketHandle)
+SENF_AUTO_UNIT_TEST(unDatagramSocketHandle)
 {
     std::string testString ("Hallo Welt.");
     std::string socketPath (".socket-UNDatagramSocketHandle.test");
@@ -54,15 +54,15 @@ BOOST_AUTO_UNIT_TEST(unDatagramSocketHandle)
     BOOST_CHECKPOINT( 5 );
     BOOST_CHECK_EQUAL( inputSocket.read(), testString);
 
-      
-    
+
+
 
     BOOST_CHECKPOINT( 6 );
     outputSocket.close();
     BOOST_CHECKPOINT( 7 );
     inputSocket.close();
 
-//    if( unlink(socketPath.c_str()) != 0)
+//    if (unlink(socketPath.c_str()) != 0)
 //        perror( "unlink failed");
 }